/* app/static/css/auth.css */

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

/* Background decorative blur blobs */
.auth-blob-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}

.auth-blob-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 350px;
    height: 350px;
    background: rgba(5, 150, 105, 0.15);
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    z-index: 10;
    position: relative;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    margin-bottom: 15px;
}

.auth-logo svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 5px;
}

.auth-footer-text {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--muted);
}

.auth-link {
    color: var(--primary-light);
    font-weight: 600;
}

.auth-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Extra checkbox and submit layout */
.auth-row-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}
