body {
    background-color: white;
}

.authentication-image {
    border-radius: 44px;
    object-fit: cover;
    /* padding-right: 20px; */
    /* width: 100%; */
    /* height: 1100px; */
    position: fixed;
    top: 0;
    right: 55%;
    height: 100%;
    padding: 20px;
}

.Curlogo {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.Curlogo img {
    width: 246px;
}


.login-form label {
    color: #737373;
    font-family: "CuristicRegular";
    /* font-size: 18px; */
    font-size: 16px;
    line-height: 21.94px;
}

.login-form input,
.login-form select {
    color: black;
    background-color: white;
    font-family: "CuristicMedium";
    /* font-size: 20px; */
    font-size: 18px;
    line-height: 24.38px;
    margin-bottom: 10px;
    /* padding: 24px; */
    padding: 15px;
    border: 2px solid #F2F2F2;
    border-radius: 14px;
    width: 100%;
}

.login-form select {
    appearance: none;
    background-image: url('/Assets/Images/select-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1.5rem auto;
    margin-bottom: 0px;
}

.login-form input:focus,
.login-form select:focus {
    box-shadow: none;
    border: 2px solid #F2F2F2;
    color: black;
}

.login-form input::placeholder {
    color: #B9B9B9;
}

.login-form .form-check label {
    color: #0974BA;
    font-family: "CuristicMedium";
    /* font-size: 20px; */
    font-size: 16px;
    line-height: 24.38px;
    margin-bottom: 0px;
    /* margin-top: 5px; */
    margin-top: 3px;
}

.login-form .form-check-input {
    /* width: 22px;
    height: 22px; */
    width: 20px;
    height: 20px;
    padding: 0px;
    border-radius: 5px;
    border: 2px solid #0974BA;
}

.login-form .form-check-input:focus {
    /* width: 22px;
    height: 22px; */
    width: 20px;
    height: 20px;
    padding: 0px;
    border-radius: 5px;
    border: 2px solid #0974BA;
}

input[type="checkbox"]:checked {
    background-color: #0974BA;
}

.forget {
    color: #0974BA;
    font-family: "CuristicBold";
    /* font-size: 20px; */
    font-size: 16px;
    line-height: 24.38px;
    margin-bottom: 0px;
    text-decoration: none;
}

.login-form p {
    color: black;
    font-family: "CuristicMedium";
    font-size: 14px;
    line-height: 17.07px;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 30px;
}

.login-form p a {
    color: #0974BA !important;
    font-family: "CuristicBold";
}

.login-form button:disabled,
.login-form button:hover {
    /* padding: 14px 24px; */
    padding: 12px;
    border-radius: 14px;
    background-color: #B9B9B9;
    font-family: "CuristicBold";
    /* font-size: 18px; */
    font-size: 16px;
    line-height: 21.94px;
    margin-bottom: 0px;
    color: white;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-top: 30px;
    width: 50%;
}

.login-form button,
.login-form button:hover {
    /* padding: 14px 24px; */
    padding: 12px;
    border-radius: 14px;
    background-color: #0974BA;
    font-family: "CuristicBold";
    /* font-size: 18px; */
    font-size: 16px;
    line-height: 21.94px;
    margin-bottom: 0px;
    color: white;
    margin-right: auto;
    margin-left: auto;
    display: block;
    margin-top: 30px;
    width: 50%;
}

.create-account {
    color: #737373;
    font-family: "CuristicMedium";
    /* font-size: 20px; */
    font-size: 18px;
    line-height: 24.38px;
    margin-bottom: 0px;
    text-align: center;
    /* margin-top: 50px; */
    margin-top: 40px;
}

.create-account a {
    color: #0974BA !important;
    font-family: "CuristicBold";
    text-decoration: none;
}

.password-box {
    position: relative;
}

.password-toggle-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
}

#LoginDiv {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
}

#SignupDiv {
    position: absolute;
    width: 40%;
    padding-bottom: 30px;
    padding-top: 10px;
}

.generalContainer {
    margin-top: 50px;
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .Curlogo {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .login-form {
        padding: 15px;
    }

    .forget {
        font-size: 16px;
    }

    .login-form .form-check label {
        font-size: 16px;
    }

    .login-form .form-check-input {
        width: 20px;
        height: 20px;
    }

    .login-form button,
    .login-form button:hover {
        width: 60%;
    }

    .create-account {
        margin-top: 30px;
        /* font-size: 18px; */
        font-size: 14px;
    }

    .authentication-image {
        height: auto !important;
        width: 100%;
        position: relative;
        top: 0;
        right: 0;
        padding: 0px;
    }

    #LoginDiv {
        position: relative;
        transform: none;
        width: auto;
    }

    #SignupDiv {
        position: relative;
        transform: none;
        width: auto;
        padding-bottom: 0px;
    }

    .login-form input,
    .login-form select {
        padding: 20px;
        font-size: 18px;
    }

    .generalContainer {
        margin-top: 25px;
        margin-bottom: 40px;
    }
}