/* Login Page Specific Styles */
.login-section {
    padding: 5rem 2rem;
    background: #fff;
    min-height: calc(100vh - 80px); /* Adjust for navbar height */
    display: flex;
    align-items: center;
    justify-content: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.login-container {
    max-width: 500px;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.login-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-title h2 {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 1rem;
}
.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.alert-error {
    background: #fee2e2;
    color: #dc2626;
}
.alert-success {
    background: #d1fae5;
    color: #047857;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}
.input-group {
    display: flex;
    align-items: center;
}
.input-prefix {
    background: #f9f9f9;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 5px 0 0 5px;
    color: #666;
    font-size: 0.9rem;
}
.form-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0 5px 5px 0;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: #ff6f61;
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
}
.error-text {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
.login-button {
    background: linear-gradient(135deg, #ff6f61, #ff8e7d);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    border: none;
    cursor: pointer;
}
.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
}
.login-button.bg-green-600 {
    background: #16a34a;
}
.login-button.bg-green-600:hover {
    background: #15803d;
}
.login-button.bg-gray-400 {
    background: #9ca3af;
    cursor: not-allowed;
}
.call-section {
    text-align: center;
    margin-top: 1.5rem;
}
.info-text {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.otp-display {
    text-align: center;
    margin-top: 0.5rem;
}
#dummy-otp {
    font-weight: 600;
    color: #ff6f61;
}
.timer-container {
    text-align: center;
    margin-top: 0.5rem;
}
#otp-timer {
    font-size: 0.9rem;
    color: #ff6f61;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .login-section {
        padding: 3rem 1rem;
    }
    .login-container {
        padding: 1.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}