body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #ffffff, #f6f6f6, #f9f9f9);
}
.login_container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Jost', sans-serif;
}
.mainContaintBox {
    width: 90%;
    max-width: 400px;
    height: 570px;
    background: linear-gradient(to top, #1a1717, #0c0c0f, #212529);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 20px 50px #000;
}

#chk {
    display: none;
}

.login {
    position: relative;
    width: 100%;
    height: 100%;
}

label {
    color: #fff;
    font-size: 2.3em;
    justify-content: center;
    display: flex;
    margin: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s ease-in-out;
}

label.form-label{
    font-size: small;
    margin: 0;
    justify-content: flex-start !important;
    font-weight: 100;
    align-items: center;
    height: 10px;
}
label.form-label input{
    justify-content: flex-start !important;
    width: 10px;
    margin-left: 55px;
    margin-right: 16px;
}

input {
    width: 70%;
    height: 10px;
    background: #e0dede;
    justify-content: center;
    display: flex;
    margin: 20px auto;
    padding: 12px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.login_button {
    width: 45%;
    height: 40px;
    margin: 10px auto;
    justify-content: center;
    display: block;
    color: #fff;
    background: #4D96FF;
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    transition: .2s ease-in;
    cursor: pointer;
}

.login_button:hover {
    background: #4D96FF;
}

/* signup */
.signup {
    height: 560px;
    background: #eee;
    border-radius: 60% / 10%;
    transform: translateY(-165px);
    transition: .8s ease-in-out;
}

/* signup */
.signup label {
    color: #4D96FF;
    transform: scale(.6);
    padding-top: 30px;
}

/* signup */
#chk:checked~.signup {
    transform: translateY(-550px);
}

/* signup */
#chk:checked~.signup label {
    transform: scale(1);
}

#chk:checked~.login label {
    transform: scale(.6);
}

/* Eye icon styles */
.password-container {
    position: relative;
    margin: 20px auto;
}

.eye-icon {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c6c6c;
}

.warning {
    color: red;
    font-size: 0.8em;
    position: absolute;
    margin-top: -20px;
    left: 12%;
}

.social-login {
    text-align: center;
    margin-top: 10px;
    color: white
}

.social-icons {
    display: flex;
    justify-content: center;
}

.btn-google,
.btn-apple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin: 5px;
}

.btn-google {
    background: transparent;
    color: white;
}

.btn-google:hover {
    background: transparent;
}

.btn-apple {
    background: transparent;
    color: white;
}

.btn-apple:hover {
    background: #333;
}

.btn-google img,
.btn-apple img {
    vertical-align: middle;
}


/* ---------------------------------------alert style-------------------------------*/
.alert {
    position: absolute !important;
    top: 11%;
    right: 0;
    padding: 10px;
    font-size: 14px;
    z-index: 9999;
    width: 450px;
    margin-bottom: 0;
    background-color: white;
    border: 1px solid gray;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

.alert-title {
    margin-bottom: 0;
}

.alert-warning {
    border-left: 7px solid #f6a436;
}

.alert-error {
    border-left: 7px solid #9d2424;
}

.alert-success {
    border-left: 7px solid #00b645;
}

.alert-box i {
    font-size: 30px;
    position: relative;
    top: 4px;
}

.alert-warning i {
    color: #f6a436;
}

.alert-error i {
    color: #9d2424;
}

.alert-success i {
    color: #00b645;
}

.warning-txt {
    color: #f6a436;
}

.error-txt {
    color: #9d2424;
}

.success-txt {
    color: #00b645;
}


.btn{
    transition: 1s all;
}
.btn:hover{
    transform: scale(1.05);
}