.admin_login_sec1{
    background-color: #FFFFFF;
}

.Login_form_parent{
    display: flex;
    justify-content: center;
    padding: 50px 0px;
}

.login_form{
    background-color: #F9F9F9;
    box-shadow: 4px 4px 4px 0px #00000040;
    width: 598px;
    height: 573px;
    padding: 40px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.labelandInput{
    display: flex;
    flex-direction: column;
}

.input_field_sec1{
    padding: 13px 16px;
    border: 1px solid #BBBBBB;
    background-color: inherit;
    border-radius: 8px;
    width: 485px;
    height: 48px;
}

.input_field_sec2{
    padding: 13px 16px;
    border: 1px solid #BBBBBB;
    background-color: inherit;
    border-radius: 8px;
    height: 48px;
}

.login_form_header{
    text-align: center;
    font-size: 24px;
    color: #555555;
    font-weight: 700;
}

.fielde_sec1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form_label{
    font-size: 16px;
    color: #181818;
    font-weight: 700;
}

#image{
    width: 100%;
    user-select: none;
    font-size: 24px;
    color: #555555;
    font-weight: 700;
}

.inline{
    display:inline-block;
}

.login_buttons{
    display: flex;
    gap: 20px;
}

.login_buttonn{
    width: 238px;
    height: 45px;
    background-color: #183F68;
    border-radius: 6px;
    border: 1px solid #183F68;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
}

.login_buttonn:hover{
    background-color: inherit;
    color: #000000;
    border: 1px solid #000000;
}

.return_home{
    width: 238px;
    height: 45px;
    background-color: inherit;
    border-radius: 6px;
    border: 1px solid #000000;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    transition: 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.return_home:hover{
    background-color: #183F68;
    color: #FFFFFF;
    border: 1px solid #183F68;
}

.input_captcha_buttons{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media only screen and (max-width:500px) {
    .login_form{
        width: 100%;
        padding: 20px;
    }

    .input_field_sec1{
        width: 100%;
    }

    .login_buttons{
        flex-direction: column;
    }
}