* {
    margin: 0;
    padding: 0;
    font-family: "Cairo", sans-serif;
    box-sizing: border-box;
}

.login_bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ecf0fa;
    gap: 20px;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
}

.login_body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
    border-radius: 15px;
    padding: 25px;
    align-items: center;
    direction: rtl;
    width: 25%;
    height: 50%;
    justify-content: space-between;
}

.login_h2 {
    font-size: 36px;
    color: white;
}

.label_class,
.forgot {
    color: white !important;
}

.password_cont {
    background-color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    border: rgba(0, 0, 0, 0.11) 1px solid;
    border-radius: 7px;
    padding: 5px;
}

.password_field {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
}

.password_cont:focus-within {
    border-color: #0161e8b8;
}

.input {
    width: 100%;
}

.forgot {
    text-align: start;
    cursor: pointer;
    transition: 0.4s;
    color: rgba(0, 0, 0, 0.7);
    width: 100%;
    text-decoration: none;
}

.forgot:hover {
    color: black;
}

#password-strength-message {
    font-size: 14px;
    color: red;
}

.username_message {
    font-size: 14px;
    color: red;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
    .login_body {
        width: 90%;
    }
}
