@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    

}
input,
select,
textarea,
button {
    font-size: 16px;
}

.navbar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#15151b;
    color: #f5d054;
    min-height: 70px;
    padding: 10px;
    
}


.nav-links{
    gap:70px;
    margin: 10px;
    padding: 20px;
    display: flex;
    
   
}
.navbar a {
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color:#f0e6d8;
    
}

.hamburger {
    display: none;
    background: none;
    border:none;
    color: rgb(207, 145, 88);
    font-size: 28px;
    cursor:pointer;
    padding: 0;
    margin: 0;

    line-height: 1;

}
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 0 20px;
        
    }



    .hamburger {
        display: block;
       
    }
    .nav-links {
        display:none;
        flex-direction: column;
        position:absolute;
        top:70px;
        left: 0;
        width: 100%;
        background-color: #15151b;
        padding: 20px;
        gap: 15px;
        z-index: 10;
    }

    .nav-links.open {
        display:flex;
    }
}

.hamburger:hover {
    background-color: transparent;
    color: rgb(218, 217, 214);
}


body {
    background-color: #111117;
    
    min-height: 100vh;
}


h1 {
    color:#f0e6d8;
    text-align:center;
    font-family: 'Inter', sans-serif;
    margin-top:40px;
    font-size:55px;
   
}
h2 {
    color:#f0e6d8;
    text-align:center;
    font-size:20px;
    font-family: 'Inter', sans-serif;
    margin-top:20px;
   
}
h3 {
    font-size:10px;
    color:#f0e6d8;
    text-align:center;
    font-family: 'Inter', sans-serif;
    margin-top:20px;
}


   






.form-card {
    width:400px;
    margin:30px auto;
    background-color: #15151b;
    padding:30px;
    border-radius:5px;
    
}
input::placeholder{ 
    color:#6b6b76;
}



button {
    margin-top: 10px;
    background-color: #060606;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #f5f4f6;
}

input, select {

    background-color: #0b0b0f;
    border: 1px solid #2a2a33;
    color: white;
    border-radius:6px;
    padding:12px;
    margin:5px;
}

input:focus, select:focus {
    outline: none;
    border-color: #c8c4d0;


}
select {
    background-color: #f0e6d84d;
    border: 1px solid #2a2a33;
    color: white;
    border-radius:6px;
    
    margin:5px;
    text-align:center;
    font-size: 15px;
    padding:12px;

    
    
}

label {
    background-color: #0b0b0f;
    border: 1px solid #2a2a33;
    color : #f0e6d8;
    border-radius:6px;
    padding:12px;
    margin:5px;
    font-size: 14px;
    text-align:center;
    font-family:Arial, Helvetica, sans-serif

}
form {
    
    display:flex;
    flex-direction:column;
    color: white;

}


label {
     margin-bottom:6px;
     padding:10px;
}


form {
    display: flex;
    flex-direction: column;
    color:#f6f6f6;

}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 5px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;

    background: #0b0b0f;
    border:1 px solid #2a2a33;
    border-radius: 6px;

    padding: 11px;
    margin: 0px;

    color: #d8d8df;
    font-family: 'Inter', sans-serif;
    font-size: 11px;

    cursor: pointer;
    transition: 0.15 ease;
}
.checkbox-label:hover {
    border-color: #ffffff;;
    background: #111117;
}
.checkbox-label:has(input:checked) {
    border-color: white;
    background-color: #0b0b0f;
}


.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 20px;
    height: 20px;

    margin: 0;
    flex-shrink: 0;

    border: 1px solid #3a3a45;
    border-radius: 5px;
    background: #0b0b0f;

    cursor: pointer;
    transition: 0.15s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #7c3aed;
    border-color: #7c3aed;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -52%);

    color: white;
    font-size: 14px;
    font-weight: bold;
}
.l {
    border-radius: 6px;
    border: none;
    background-color: #4f4e4e6c;
    text-align:center;
    font-size:13px;
    padding:10px;
    margin:5px;
    text-align:left;
    font-family: 'Inter', sans-serif;

}