:root {
    --primary: #4d1119;
    --secondary: #7a2d33 ;
    --accent: #FFD700;
    --background: #cad5db;
    --success: #718e99;
    --text: #2F4F4F;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* font-family: 'Segoe UI', system-ui, sans-serif; */
}
input{
    font-family: Cambria !important;
}
select{
    font-family: Cambria !important;
}
body {
    background: var(--background);
    min-height: 100vh;
    padding: 1rem;
    color: var(--text);
    font-family: Cambria !important;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.step {
    padding: 1.5rem;
    /* opacity: 0; */
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.progress-bar {
    height: 4px;
    background: #e2e8f0;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--primary);
    width: 20%;
    transition: width 0.3s ease;
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-section {
    margin-bottom: 1.5rem;
    background: var(--background);
    padding: 1rem;
    border-radius: 0.5rem;
}

.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    /* margin-bottom: 0.5rem; */
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
}

input, select {
    width: 100% !important;
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,140,0,0.1);
}

.option-card {
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-card:hover {
    border-color: var(--primary);
    background: var(--background);
}

.option-card.selected, .option-card:focus  {
    border-color: var(--primary);
    background: var(--background);
    box-shadow: 0 2px 4px rgba(255,140,0,0.1);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--text);
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.member-section {
    margin-top: 1rem;
    padding: 1rem;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
}

.add-button {
    background: var(--success);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    body {
        padding: 2rem;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .btn {
        width: auto;
    }

    .form-container {
        border-radius: 1.5rem;
    }

    .step {
        padding: 2rem;
    }

    h2 {
        font-size: 2rem;
    }
}

.logo{
    text-align: center;
}

.logo img{
    width: 20% !important;
}


@media only screen and (max-width: 768px) {
    .logo img{
        width: 50% !important;
    }
}
.register-title{
    text-align: center;
    font-size: 20px !important;
    margin-bottom: 10px;
    color: black;
}


/* Basic Bootstrap table */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529; /* default text color */
    border-collapse: collapse; /* ensure borders collapse */
  }
  
  /* Add borders around each cell when using .table-bordered */
  .table-bordered {
    border: 1px solid #dee2e6; /* border around table */
  }
  
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6; /* border around cells */
  }
  .text-left th{
    text-align: left;
  }
  .hidden{
    display: none !important;
  }