/* Auth Pages Styles */
body {
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    margin: 0;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.welcome-text {
    color: #6c757d;
    margin-bottom: 0;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.input-group {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.input-group:focus-within {
    border-color: #ff4757;
}

.input-group-text {
    background: transparent;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.password-toggle {
    cursor: pointer;
    border-left: none;
}

.forgot-password {
    color: #ff4757;
    font-size: 13px;
    text-decoration: none;
}

.btn-primary {
    padding: 12px;
    font-weight: 500;
}

.btn-primary:hover {
    background: #ff6b81;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 10px;
    color: #666;
    font-size: 13px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-login .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.social-login img {
    width: 20px;
    height: auto;
    object-fit: contain;
}

.signup-text {
    text-align: center;
    margin: 0;
    font-size: 14px;
    color: #666;
}

.signup-text a {
    color: #ff4757;
    text-decoration: none;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .auth-box {
        padding: 30px 20px;
    }

    .auth-container {
        padding: 15px;
    }
}

/* Add these styles to your existing auth.css */

.verification-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.code-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.resend-code {
    text-align: center;
    margin-top: 20px;
}

.resend-code a {
    color: #0d6efd;
    text-decoration: none;
}

.resend-code a:hover {
    text-decoration: underline;
}

.countdown {
    font-size: 14px;
    margin-top: 5px;
}

.user-email {
    font-weight: 600;
    color: #0d6efd;
}

/* Progress Indicator */
.progress-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.progress {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: space-between;
}

.step {
    color: #6c757d;
    font-size: 14px;
    position: relative;
}

.step.active {
    color: #007bff;
    font-weight: bold;
}