.auth-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1.5rem;
}
.auth-form {
    width: 400px;
    display: block;
    padding: 2.5rem;
    box-sizing: border-box;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
}
.auth-form label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.auth-form input {
    margin-top: 5px;
    margin-bottom: 1rem;
    width: 100%;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--text-primary);
    outline: none;
    border-radius: 16px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
}
.auth-recovery {
    margin-top: -7.5px;
    width: 100%;
    text-align: right;
    color: white;
    font-size: 14px;
}
.auth-recovery:hover {
    text-decoration: underline;
    cursor: pointer;
}
.auth-line {
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    height: 1px;
    width: 100%;
    background-color: var(--color-border);
}
.auth-change-text {
    text-align: center;
    color: white;
    font-size: 16px;
}
.auth-change-text b{
    color: rgb(66, 66, 244);
}
.auth-change-text b:hover {
    text-decoration: underline;
    cursor: pointer;
}
.auth-btn {
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    margin-top: 2rem;
    height: 44px;
    border-radius: 22px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    background-color: rgb(22, 133, 208);
    color: white;
}
.auth-header {
    text-align: center;
    margin-bottom: 1rem;
}
.auth-logo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.auth-type {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.5;
}
.auth-comment {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 8px;
}

.eyebtn {
    position: absolute;
    right: 16px;
    top: 22px;
    color: var(--text-secondary);
    width: 25px;
    height: 25px;
}
.eyebtn:hover {
    cursor: pointer;
}