/* Desktop Auth Styles (Extracted from inline styles) */
.auth-header {
    margin-bottom: 20px;
}

.auth-title {
    color: #333;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    /* mb-4 equivalent */
}

.auth-subtitle {
    color: #666;
    margin-bottom: 3rem;
    /* mb-5 eq */
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.auth-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.forgot-password-link {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: var(--primary-color, #0d6efd);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

.signup-link-container {
    text-align: center;
    margin-top: 15px;
}

.signup-link {
    color: var(--primary-color, #0d6efd);
    text-decoration: none;
    font-size: 0.9rem;
}