@import url("../theme/main-theme.css");


/* 
------------------------------------
    ==> Login Form <==
------------------------------------
*/

/* ==> Error messages */
.form__error-message {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--ttyb-red-100);
    margin: 0;
    text-align: left;
}

/* ==> Input: Email */
.input__email {
    margin: 0px !important;
}

/* ==> Input: Password */
.input__password--wrapper {
    position: relative
}

.input__password--input {
    padding-right: 3rem !important;
    background-color: #f2f2f2;
    border: 0px solid
}

.input__password--button {
    opacity: 0;
    padding-inline: 0.5rem !important;
    z-index: 100;
    position: absolute;
    top: 25%;
    right: 0.5rem;
}

.input__password--wrapper:focus-within .input__password--button {
    opacity: 1;
    cursor: pointer;
}

.input__password--show {
    color: #5c6368;
    background-color: rgba(187, 187, 187, 0.514);
    border-radius: 50% !important;
}

.input__password--show:focus {
    border: none;
    outline: none !important;
}

/* 
------------------------------------
    ==> Remember password <==
------------------------------------
*/

.forgot-password__container {
    margin-left: auto;
}

.forgot-password__label {
    color: #3b82f6;
    font-weight: 500;
}