* {
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: ProximaNovaRegular;
}

body {
    background: linear-gradient(180deg, #121212 0%, #383838 45.44%, #121212 100%);
    min-height: 100vh;
}

:root {
    --black: #1d1d1b;
    --white: #fff;
    --blackDropdown: #1e1e1e;
}

.header-section {
    background-color: #1e1e1e;
    height: 80px;
    padding: 1rem;
}

.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-top: 4rem;
}

h1 {
    color: #fff;
    font-family: ProximaNovaRegular;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 16px;
    }
}

@media screen and (min-width: 812px) {
    h1 {
        font-size: 20px;
    }
}

@media screen and (min-width: 1024px) {
    h1 {
        font-size: 30px;
    }
}

@media screen and (min-width: 1440px) {
    h1 {
        font-size: 36px;
    }
}

@media screen and (min-width: 1920px) {
    h1 {
        font-size: 48px;
    }
}

.login-header {
    display: flex;
    text-align: center;
    justify-content: center;
}

    .login-header .active span {
        font-weight: 700;
    }

    .login-header a {
        width: 182px;
        text-decoration: none;
    }

        .login-header a::after {
            content: "";
            display: inline-block;
            text-align: center;
            opacity: 0.2;
            background-color: #fff;
            border: 1px solid #ffffff;
            width: 100%;
            height: 1px;
        }

.active::after {
    opacity: 1 !important;
}

span {
    color: #fff;
    font-family: ProximaNovaRegular;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
}

.login-form-content {
    justify-content: center;
    flex: 1;
    margin-top: 1rem;
}

    .login-form-content form {
        width: 70%;
    }

.register-form-content {
    justify-content: center;
    flex: 1;
    margin-top: 1rem;
}

    .register-form-content form {
        width: 40%;
    }

.btn-login-outline {
    margin: 0px auto;
    width: 50%;
    display: block;
    border: none;
    font-size: 16px;
    font-weight: 700;
    margin-top: 1rem;
}

.min-content-h {
    min-height: 343px;
}

.btn-login-outline:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: underline;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    background-color: #3d4245;
    border: none;
    margin-top: 1rem;
    border-radius: 6.4px !important;
    padding: 1rem;
    color: #fff;
    padding: 30px 20px 6px 20px;
}

/*
input[type="text"],
input[type="email"],
input[type="password"]:focus {
  background-color: #3d4245;
  border: none;
  margin-top: 1rem;
  border-radius: 8px;
  box-shadow: none;
  color: #fff;
  padding: 30px 20px 6px 20px;
}
*/
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.material-input {
    width: 100%;
    font-size: 16px !important;
    transition: border-bottom-color 0.3s !important;
}

    .material-input:focus {
        outline: none;
        border-bottom-color: #2196f3;
    }

.input-label {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transition: top 0.3s, font-size 0.3s;
    pointer-events: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.5);
}

.material-input:focus + .input-label,
.material-input:not(:placeholder-shown) + .input-label {
    top: 32%;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.5);
}

.form-control {
    position: relative;
}

    .form-control input {
        padding-top: 20px;
    }

.form-control {
    background-color: #3d4245;
    box-shadow: none !important;
    color: #fff;
    border: none;
    box-shadow: none;
}

    .form-control:focus {
        background-color: #3d4245;
        box-shadow: none !important;
        color: #fff;
        border: none;
        box-shadow: none;
    }

.form-select {
    color: #fff;
    background-image: url("../../../img/auth/arrow-down.svg");
    background-color: #3d4245;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.6);
}

    .form-select option {
        color: rgba(255, 255, 255, 0.6);
    }

        .form-select option:checked {
            color: #fff;
        }

label {
    color: #fff;
}

.show_hide_pw_group div {
    position: absolute;
    right: 0;
    top: 30%;
    display: flex;
    align-items: center;
    margin-top: 1rem;
    background-color: #3d4245;
    padding-right: 1rem;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

#show_confirm_hide_password div {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    background-color: #3d4245;
    padding-right: 1rem;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}



.form-check label {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}

.forget-password a {
    text-decoration: none;
}

    .forget-password a:hover {
        text-decoration: underline;
        color: #fff;
    }

    .forget-password a span {
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
    }

.btn-primary {
    background-color: #96a825;
    color: var(--white);
    border: 1px solid #96a825;
    border-radius: 30px;
    width: 100%;
    height: 54px;
    margin-bottom: 5rem;
    font-family: ProximaNovaRegularBold;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: transparent;
        color: #fff;
        border: 1px solid #96a825;
    }

#registerForm {
    display: none;
}

select {
    background-color: #3d4245;
}

p {
    color: #ffffff99;
    font-size: 12px;
    font-weight: 400;
}

b {
    color: #fff;
    font-weight: 400;
}

.form-check-input:checked[type="checkbox"] {
    background-image: url("../../../img/auth/checked.svg");
    background-color: #98a726;
    border-color: #98a726;
}

.form-check-input:focus {
    box-shadow: none;
}

@media screen and (max-width: 980px) {
    body {
        background: #000000 !important;
    }

    .header-section {
        background-color: #000000;
    }

    .login-section {
        margin-top: 3rem;
    }

    .btn-primary {
        margin-bottom: 2rem;
    }

    .login-form-content form {
        width: 100%;
        padding: 0 0.3rem;
    }

    .login-form-content h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.5);
    }

    .login-form-content {
        width: 95%;
        min-width: max-content;
    }

    .register-form-content form {
        width: 100%;
        padding: 0 1rem;
    }

    .register-form-content h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.5);
    }

    .forgot-password-content form {
        width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .header-section {
        height: auto;
        padding-top: 21.5px;
    }

        .header-section img {
            width: 145px;
            height: 29px;
        }

    .login-header {
        margin-top: 24px;
    }
}

/* Forgot Password Page */

.forgot-password-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-top: 1rem;
}

.forgot-password-content {
    min-width: 491.98px;
}

    .forgot-password-content form {
        width: 77%;
        margin: 0px auto;
    }

.forgot-password-recaptcha-area {
    margin-top: 2rem;
}

.forgot-password-content .forgot-password-btn {
    padding: 12px 24px 12px 24px !important;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
    .forgot-password-text {
        font-size: 28px;
    }
}

@media screen and (min-width: 1440px) {
    .forgot-password-text {
        font-size: 32px;
    }
}

@media screen and (min-width: 1920px) {
    .forgot-password-text {
        font-size: 48px;
    }
}
/* Forgot Password Page */

/* Forgot Password Send Mail Page */

.forgot-password-mail-send-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-top: 1rem;
}

.forgot-password-mail-send-content {
    max-width: 380px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.img-area {
    background-color: #98a725;
    border-radius: 3rem;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.forgot-password-mail-send-content p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #b3b3b3;
    text-align: center;
    font-weight: 700;
    font-family: ProximaNovaRegularBold;
}

@media screen and (max-width: 480px) {
    .forgot-password-mail-send-content p {
        font-size: 16px;
    }
}
/* Forgot Password Send Mail Page */

/* Forgot Password Send SMS Page */

.forgot-password-send-sms-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    margin-top: 1rem;
}

@media screen and (min-width: 480px) {
    .forgot-password-send-sms-area {
        max-width: 60%;
        width: 100%;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-send-sms-area {
        max-width: 30%;
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-send-sms-area {
        max-width: 30%;
        width: 100%;
    }
}

@media screen and (min-width: 1440px) {
    .forgot-password-send-sms-area {
        max-width: 25%;
        width: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .forgot-password-send-sms-area {
        max-width: 27%;
        width: 100%;
    }
}

.back-btn-area {
    top: 2px;
}

@media screen and (min-width: 320px) {
    .forgot-password-send-sms-area {
        max-width: 60%;
        width: 100%;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-send-sms-area {
        max-width: 60%;
        width: 100%;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-send-sms-area {
        max-width: 30%;
        width: 100%;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-send-sms-area {
        max-width: 30%;
        width: 100%;
    }
}

@media screen and (min-width: 1440px) {
    .forgot-password-send-sms-area {
        max-width: 25%;
        width: 100%;
    }
}

@media screen and (min-width: 1920px) {
    .back-btn-area {
        top: 12%;
    }
}

.back-btn-area img {
    width: 34px;
    height: 34px;
}

@media screen and (min-width: 320px) {
    .back-btn-area img {
        width: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 480px) {
    .back-btn-area img {
        width: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 812px) {
    .back-btn-area img {
        width: 24px;
        height: 24px;
    }
}

@media screen and (min-width: 1024px) {
    .back-btn-area img {
        width: 34px;
        height: 34px;
    }
}

@media screen and (min-width: 1920px) {
    .back-btn-area img {
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 480px) {
    .back-btn-area {
        top: -3px;
        left: 1.5rem !important;
    }
}

.forgot-password-send-sms-content {
    max-width: 380px;
    margin-top: 2rem;
}

@media screen and (max-width: 480px) {
    .forgot-password-send-sms-content {
        max-width: 340px;
        margin-top: 2rem;
    }
}

.forgot-password-send-sms-content p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #b3b3b3;
    text-align: center;
    font-family: ProximaNovaRegularBold;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.forgot-password-send-sms-content .timer {
    font-size: 18px;
}

@media screen and (max-width: 480px) {
    .forgot-password-send-sms-content .timer {
        font-size: 16px;
    }
}
/* Forgot Password Send SMS Page */

/* Forgot Password Change Password Page */
.forgot-password-change-password-area {
    max-width: 340px;
    width: 100%;
    margin-top: 2rem;
}

.forgot-password-send-sms-content {
    max-width: 380px;
    margin-top: 2rem;
    width: 100%;
}
/* Forgot Password Change Password Page */

.forgot-password-change-confirm-content {
    max-width: 380px;
    margin-top: 0px;
    width: 100%;
}

    .forgot-password-change-confirm-content .forgot-password-btn {
        background-color: #96a825;
        color: var(--white);
        border: 1px solid #96a825;
        border-radius: 30px;
        width: 100%;
        height: 54px;
        margin-bottom: 5rem;
        font-family: ProximaNovaRegularBold;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .forgot-password-change-confirm-content .forgot-password-btn:hover {
            background-color: transparent;
            color: #fff;
            border: 1px solid #96a825;
        }

@media screen and (min-width: 320px) {
    .forgot-password-change-confirm-content .forgot-password-btn {
        width: 85%;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-change-confirm-content .forgot-password-btn {
        width: 90%;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-change-confirm-content .forgot-password-btn {
        width: 95%;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-change-confirm-content .forgot-password-btn {
        width: 100%;
    }
}

.forgot-password-change-confirm-content p {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #b3b3b3;
    text-align: center;
    font-family: ProximaNovaRegularBold;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media screen and (min-width: 320px) {
    .forgot-password-send-sms-content .input-group {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-send-sms-content .input-group {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-send-sms-content .input-group {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-send-sms-content .input-group {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 320px) {
    .forgot-password-send-sms-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-send-sms-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-send-sms-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-send-sms-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 320px) {
    .forgot-password-content .input-group {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-content .input-group {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-content .input-group {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-content .input-group {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 320px) {
    .forgot-password-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 480px) {
    .forgot-password-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 812px) {
    .forgot-password-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 95%;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    .forgot-password-content .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
}

.forgot-password-send-sms-content .timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    border: 1px solid #3d4245;
    border-radius: 1px !important;
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #3d4245 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.loading-overlay {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background: rgb(30,30,30, .5);
    z-index: 9;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-spinner {
    color: #96a825;
    width: 4.5rem;
    height: 4.5rem;
}

.app-loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgb(0 0 0 / 70%);
}

.app-loading-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    min-height: 100vh;
}

#app-loading {
    margin: auto;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.gender-form-group #parsley-id-multiple-gender {
    position: absolute;
    top: 29px;
    left: 0;
}

.kvk_confirm_text a {
    color: #98a726 !important;
    text-decoration: underline;
}

/* New Styles */
.kids-club-login {
    padding: 40px;
    border-radius: 16px;
    background-color: #292929;
    position: relative;
    z-index: 20;
}

    .kids-club-login #login-button {
        margin-bottom: 0px !important;
    }

    .kids-club-login h1 {
        font-size: 32px;
        font-weight: 600;
        color: white;
    }

    .kids-club-login .login-form-content form {
        width: 100%;
    }

    .kids-club-login .login-header a {
        width: 50%;
        text-decoration: none;
    }

.kids-club-container {
    background-color: #FF7148;
    width: 100%;
    margin-top: 0 !important;
    min-height: 91.58vh;
    overflow-y: hidden !important;
    max-width:100vw;
    overflow-x:hidden !important;
    position: relative !important;
    justify-content: flex-start !important;
    padding-top: 70px;
}

.kids-bg {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100vw;
    object-fit: cover;
    top: 0;
    height: auto;
}

.kids-bottom {
    width: 100%;
    margin-top: 40px !important;
    margin-top: auto;
}

.kids-bottom-mobile {
    display: none;
}

.kids-club-container .register-form-content form {
    width: 100% !important;
}

.kids-register.kids-club-login {
    max-width: 580px;
    width: 100%;
}

.kids-register .btn-primary {
    margin-bottom: 0px;
}

.kids-club-register-form {
    padding: 20px;
    background-color: #FF7148;
    border-radius: 10px;
}

.kids-club-header {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

    .kids-club-header .kids-club-register-header-text {
        font-size: 16px;
        color: white;
        line-height: 24px;
        font-weight: 600;
        padding-bottom: 16px;
    }

.kids-club-register-form .kids-input-container input[type="text"], .kids-club-register-form .kids-input-container input[type="email"], .kids-club-register-form .kids-input-container input[type="password"] {
    background-color: #FFFFFF;
    border: none;
    margin-top: 1rem;
    border-radius: 8px !important;
    padding: 1rem;
    color: black;
    padding: 30px 20px 6px 20px
}

.kids-club-register-form .kids-input-container .form-select {
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right .75rem center !important;
    background-size: 16px 12px !important;
    color: black;
}

.kids-club-register-from .kids-input-container .kvk_confirm_text-c {
    color: white;
    opacity: 60%;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

a {
    color: white !important;
    opacity: 87%;
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
}

.kids-club-register-form .kids-input-container .form-select option {
    color: black !important;
}

.kids-date {
    font-size: 16px;
    font-weight: 600;
    line-height: 24%;
    color: white;
    padding-bottom: 10px;
    padding-top: 22px;
}

.kids-club-register-form .kids-input-container .input-label {
    font-size: 13px !important;
    color: black !important;
    opacity: 60% !important;
}

@media(max-width: 768px) {
    .register-form-content form {
        width: 100%;
        padding: 0;
    }

    .kids-club-reg.kids-club-container {
        padding-left: 16px !important;
        padding-right:16px !important;
    }

    .kids-club-header {
        display: flex;
        flex-direction:column;
        row-gap:16px;
        align-items: flex-start;
    }
    .kids-date {
        font-size: 16px;
        font-weight: 600;
        line-height: 24%;
        color: white;
        padding-bottom: 10px;
    }

    [name="signup_kid_surname"] {
        margin-top: 0 !important;
    }

    .kids-bg {
        display: none !important;
    }

    .kids-club-login {
        padding: 20px 14px !important;
        width: 94%;
    }

        .kids-club-login h1 {
            font-size: 20px;
            padding-bottom: 30px;
        }

    .kid-club-login .form-group img {
        display: none !important;
    }

    .login-cgv {
        display: none !important;
    }

    .kids-club-container {
        padding-top: 32px;
    }

    .kids-club-login h1 {
        font-size: 20px;
        padding-bottom: 16px;
    }

    .kids-bottom {
        display: none;
    }

    .kids-bottom-mobile {
        display: block !important;
        width: 100vw;
        margin-top: 16px;
    }
}
.kids-input-container .parsley-required {
    color: white !important;
}

/* New Styles */
