.auth-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 30px 24px;
}
.auth-logo {
    text-align: center;
    margin-bottom: 36px;
}
.auth-logo h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--w-gray-900);
    letter-spacing: -0.5px;
}
.auth-logo p {
    font-size: 13px;
    color: var(--w-gray-600);
    margin-top: 4px;
}
.auth-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--w-gray-200);
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}
.auth-form-group {
    margin-bottom: 16px;
}
.auth-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--w-gray-700);
    margin-bottom: 6px;
}
.auth-input {
    width: 100%;
    height: 44px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid var(--w-gray-200);
    font-family: var(--font-sans);
    font-size: 14px;
    background-color: var(--w-gray-55);
    transition: all 0.2s ease;
    outline: none;
}
.auth-input:focus {
    border-color: var(--w-blue-500);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px var(--w-blue-100);
}
.auth-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}
.auth-alert-danger {
    background-color: var(--w-red-100);
    color: var(--w-red-500);
    border: 1px solid rgba(255, 51, 75, 0.1);
}
.auth-alert-success {
    background-color: var(--w-green-100);
    color: var(--w-green-500);
    border: 1px solid rgba(0, 179, 104, 0.1);
}
.auth-btn {
    background-color: var(--w-blue-500);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    height: 44px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 12px rgba(51, 102, 255, 0.15);
    transition: all 0.2s ease;
    margin-top: 10px;
}
.auth-btn:hover {
    background-color: var(--w-blue-600);
    transform: translateY(-1px);
}
.auth-btn:active {
    transform: translateY(0);
}
.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--w-gray-600);
}
.auth-link {
    color: var(--w-blue-500);
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
    transition: color 0.2s;
}
.auth-link:hover {
    color: var(--w-blue-600);
    text-decoration: underline;
}
