/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.red_form {
    width: 450px !important;
    max-width: 95% !important;
    padding: 30px 20px;
    margin: auto;
    box-shadow: 0px 0px 20px 0px #00000012, 0px 50px 40px -50px #00000038;
    background-color: #211f26;
    border-radius: 0.5rem;
}

.red_errors {
    color: #ee0000;
    margin-bottom: 12px;
    width: 450px !important;
    max-width: 95% !important;
}

.red_form label::after {
    content: " *";
    color: red;
    font-weight: bold;
}

#red_login_form p {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}

#red_login_form .error {
    color: red;
    font-size: 0.8rem;
}

#red_login_form input[type=text],
input[type=password] {
    width: 100%;
    font-family: inherit;
    height: 48px;
    line-height: 48px;
    background-color: #2b2930;
    border: 1px solid #3a3840;
    color: #e6e6e6;
    border-radius: 0.5rem;
    padding: 0 15px;
}

#red_login_form input[type=submit] {
    width: 100%;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
    height: 48px;
    padding: 0.375rem 0.75rem;
    margin-top: 1rem;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-password i {
    color: #999;
    font-size: 20px;
}

.red_form label::after {
    content: " *";
    color: red;
    font-weight: bold;
}

#red_registration_form p {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}

#red_registration_form .error {
    color: red;
    font-size: 0.8rem;
}

#red_registration_form input[type=text],
input[type=email],
input[type=tel],
input[type=password] {
    font-family: inherit;
    height: 48px;
    line-height: 48px;
    background-color: #2b2930;
    border: 1px solid #3a3840;
    color: #e6e6e6;
    border-radius: 0.5rem;
    padding: 0 15px;
}

#red_registration_form input[type=submit] {
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 400;
    height: 48px;
    padding: 0.375rem 0.75rem;
    margin-top: 1rem;
}