/* Screen reader only utility to hide the label visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.auth-card-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    text-align: left;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.auth-input {
    width: 100%;
    background-color: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 24px 12px;
    font-size: 16px;
    color: #556b8b;
    outline: none;
    transition: border-color 0.2s ease;
}

.auth-input:focus {
    border-color: #cbd5e1;
    box-shadow: 0px 0px 0px 1px color-mix(in srgb, transparent, var(--clerk-color-border, var(--clerk-color-neutral, #000000)) 28%),0px 0px 1px 0px color-mix(in srgb, transparent, var(--clerk-color-border, var(--clerk-color-neutral, #000000)) 11%),0px 0px 0px 4px color-mix(in srgb, transparent, var(--clerk-color-ring, var(--clerk-color-neutral, #000000)) 15.000000000000002%)
    
}

.custom-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background-color: #1379de;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 50px;
    border: #e5e7eb;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.custom-btn-primary:hover {
    background-color: #1379deb5;
    border: #e5e7eb;
}

/* "Or" Divider Line */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider span {
    padding: 0 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 300;
}

/* Social Login Buttons Grid */
.social-login-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.social-btn:hover {
    background-color: #dddddd45;
}

/* Terms and Conditions text styling */
.auth-terms {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    text-align: center;
    margin-top: 8px;
    padding: 5px;
}

.color-text-link {
    color: #0a4178;
    text-decoration: underline;
}

.color-text-link:hover {
    color: #08335e;
}