.auth-actions {
    margin-top: 1.5rem;
}

/* Primary login button */
.auth-primary-btn {
    min-height: 48px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

    .auth-primary-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(13, 110, 253, 0.18);
    }

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: #98a2b3;
    font-size: 0.8rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e7eaf0;
    }

    .auth-divider span {
        white-space: nowrap;
    }

/* Registration button */
.auth-register-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
    min-height: 66px;
    text-align: left;
    color: #344054;
    background: #fff;
    border: 1px solid #e2e6ec;
    border-radius: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

    .auth-register-btn:hover {
        color: #344054;
        background: #f9fbff;
        border-color: rgba(13, 110, 253, 0.35);
        box-shadow: 0 6px 20px rgba(16, 24, 40, 0.08);
        transform: translateY(-1px);
    }

/* Icon */
.auth-register-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--bs-primary);
    font-size: 1.05rem;
}

/* Text area */
.auth-register-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.3;
}

.auth-register-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #344054;
}

.auth-register-subtitle {
    margin-top: 3px;
    font-size: 0.77rem;
    font-weight: 400;
    color: #98a2b3;
}

/* Right arrow */
.auth-register-arrow {
    color: #98a2b3;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.auth-register-btn:hover .auth-register-arrow {
    color: var(--bs-primary);
    transform: translateX(3px);
}
