/* auth.css - Login specialized styles */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: #fff;
}

.auth-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-login:hover {
    background-color: #0056b3;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.captcha-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}
.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 1;
}
.auth-divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}
.social-login {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}
.btn-google, .btn-otp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    box-sizing: border-box;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #ddd;
    transition: background 0.2s;
}
.btn-google {
    background: #fff;
    color: #757575;
}
.btn-google:hover {
    background: #f8f8f8;
}
.btn-google img {
    width: 18px;
    height: 18px;
}
.btn-otp {
    background: #343a40;
    color: #fff;
    border: none;
}
.btn-otp:hover {
    background: #23272b;
}
