@import url('https://fonts.googleapis.com/css2?family=Inika:wght@700&family=Inria+Sans:wght@400;700&display=swap');

/*---header---*/

ul.navigation {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 82px;
}

ul.navigation li {
    color: white;
    font-family: "Inria Sans", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0px;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    transition: 0.3s;
    z-index: 10;
}

.sticky {
    background-color: #100f11;
    padding: 16px 0px;
}

.header-logo {
    width: 140px;
    margin-left: 80px;
}

a {
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 40px;
    margin-right: 80px;
}


/*---header-mobile---*/

.toggle-button {
    position: absolute;
    top: 2.25rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

.footerLink {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 850px) {
    header {
        padding: 16px 0px;
        flex-direction: column;
        align-items: flex-start;
        background-color: #100f11;
    }
    .header-logo {
        margin-left: 24px;
    }
    .header-icons {
        margin-right: 24px;
        margin-left: 24px;
        display: none;
    }
    .sticky {
        padding: 16px 0;
    }
    .toggle-button {
        display: flex;
    }
    .header-nav {
        display: none;
        margin: 24px 0px;
    }
    .active {
        display: flex;
    }
    ul.navigation {
        flex-direction: column;
        gap: 24px;
        padding-left: 24px;
    }
}

body {
    padding: 0;
    margin: 0;
    background-color: #11101B;
    background-image: url(./assets/hero-background.png);
    background-size: cover;
}

.register {
    height: 100vh;
    padding-top: 108px;
    /* padding-left: 130px; */
}

.login {
    height: 100vh;
    padding-top: 108px;
    /* padding-left: 130px; */
}

.form-container {
    background: #11101B;
    box-shadow: 0px 25px 29px 15px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    width: fit-content;
    padding: 38px 56px;
    margin: auto;
}

.form-container h1 {
    margin: 0;
    color: white;
    font-family: 'Inria Sans', 'sans-serif';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    margin-bottom: 34px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-v-div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-h-div {
    display: flex;
    gap: 30px;
}

.form-v-div label {
    font-family: 'Inria Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #D9D9D9;
}

.form-v-div input {
    background: #11101B;
    border: 1px solid #747474;
    border-radius: 10px;
    /* height: 38px; */
    width: 194px;
    color: white;
    padding: 14px 8px;
    position: relative;
}

.secondary-form-btn {
    border: 2px solid #D9D9D9;
    border-radius: 13px;
    background-color: transparent;
    font-family: 'Inria Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #D9D9D9;
    padding: 10px 56px;
    cursor: pointer;
}

.submit-form-btn {
    background: #3E91CD;
    border-radius: 13px;
    font-family: 'Inria Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: black;
    padding: 10px 56px;
    cursor: pointer;
    border: none;
}

.form-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 34px;
}

.form-v-div select {
    width: 210px;
    border-radius: 10px;
    background: #11101B;
    border: 1px solid #747474;
    color: white;
    padding: 14px 8px;
}

form p {
    text-align: center;
    font-family: 'Inria Sans', 'sans-serif';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #747474;
}

.hidden {
    display: none;
}

.r-toggle,
.l-toggle {
    color: #3E91CD;
    text-decoration: underline;
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .register {
        padding-top: 24px;
        padding-bottom: 150px;
        padding-left: 0;
    }
    .login {
        padding: 24px 0px;
        padding-top: 100px;
    }
    .form-v-div input {
        width: 100%;
        box-sizing: border-box;
    }
    .form-container {
        padding: 24px;
    }
    .form-v-div select {
        width: 160px;
    }
    .form-h-div {
        gap: 16px;
    }
    .mobile-input-h {
        flex-direction: column;
    }
    .login-btns {
        gap: 16px;
    }
}