.login-header-text {
    font-size: 24px;
    color: var(--cool-black);
    font-weight: bold;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0rem;
}

.login-box-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.login-inputs,
.login-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.login-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.login-box {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

#password-input-show {
    font-size: 12px;
    text-decoration: underline;
    color: #1E90FF;
    cursor: pointer;
    pointer-events: none;
    opacity: 0;
    user-select: none;
    transition: opacity .4s ease;
}

#password-input-show.active {
    pointer-events: all;
    opacity: 1;
}

.password-input-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-input-wrapper label {
    font-size: 15px;
}

.primary-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 15px;
}

.second-option {
    margin-top: 1rem;
}

.sign-up-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    position: relative;
    margin-bottom: 1rem;
}

.sign-up-div::before {
    position: absolute;
    content: '';
    width: 30%;
    height: 1px;
    background-color: rgb(201, 201, 201);
    right: 0;
}

.sign-up-div::after {
    position: absolute;
    content: '';
    width: 30%;
    height: 1px;
    background-color: rgb(201, 201, 201);
    left: 0;
}

.sign-up-google-btn {
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: .5rem 0;
    border-radius: 10px;
    font-size: 15px;
    height: 40px;
    box-shadow: 0px 1px 3px 0px rgba(26, 29, 40, 0.1);
    border: 1.8px solid rgb(201, 201, 201);
    transition: border-color .4s ease;
    font-weight: bold;
    color: var(--cool-black);
}

.exi-user {
    font-size: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exi-user a {
    color: #1E90FF;
}

.login-input-wrapper::after {
    content: attr(infoText);
    color: #4a5568;
    position: absolute;
    font-size: 13px;
    bottom: -23px;
    width: 100%;
    left: 0;
    opacity: 0;
    transition: opacity .4s ease, color .4s ease;
    z-index: 1;
}

.login-input-wrapper.errorTt::after {
    opacity: 1;
    color: red;
}

.password-input-options {
    width: 100%;
    text-align: right;
    position: absolute;
    bottom: -23px;
    z-index: 99;
}

#forget-password {
    font-size: 13px;
    color: #1E90FF;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

#forget-password:hover {
    text-decoration: underline;
}

#password-input-wrapper {
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .login-box {
        padding: 0 2rem;
    }
}
@media (max-width: 500px) {
    .login-box {
        width: 85%;
        padding: 0;
    }
    .t-input-no-img, .t-input {
        width: auto;
        min-width: auto;
    }
}
@media (max-width: 350px) {
    
}