.auth-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow:
        0 4px 10px rgba(15, 23, 42, 0.04),
        0 12px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(15, 23, 42, 0.06),
        0 18px 40px rgba(15, 23, 42, 0.12);
}

.auth-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    font-weight: 500;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 600;
}

.auth-input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    background: #f8fafc;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.25s ease;
    outline: none;
}

.auth-input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.auth-input::placeholder {
    color: #94a3b8;
}

.password-wrapper {
    position: relative;
}

.auth-password-input {
    padding-right: 55px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    color: #64748b;
    padding: 0;
    transition: all 0.2s ease;
}

.password-toggle:hover {
    color: #2563eb;
    transform: translateY(-50%) scale(1.1);
}

.auth-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.auth-btn {
    min-width: 140px;
    height: 50px;
    padding: 0 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
}

.auth-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}