/* Auth layout styles */
.logo-box {
    width: 160px;
    height: 48px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

/* Corporate colors */
:root {
    --therapeutia-coral: #C46A6A;
    --therapeutia-coral-hover: #B85A5A;
    --therapeutia-blue: #3A4F66;
}

/* Primary button with corporate color */
.btn-therapeutia {
    background-color: var(--therapeutia-coral);
    color: white;
    border: none;
}

.btn-therapeutia:hover {
    background-color: var(--therapeutia-coral-hover);
    color: white;
}

/* Links with corporate color */
.link-therapeutia {
    color: var(--therapeutia-coral);
    text-decoration: none;
}

.link-therapeutia:hover {
    color: var(--therapeutia-coral-hover);
    text-decoration: underline;
}

/* Verification success page */
.verification-icon {
    fill: var(--therapeutia-coral);
}

.verification-title {
    color: var(--therapeutia-blue);
}

.verification-countdown {
    background-color: #f9fafb;
}

.verification-spinner {
    color: var(--therapeutia-coral);
}
