/* iNFOTEL Sales Login Styles */



/* Navigation Sign In Link styles moved to inline CSS for better compatibility */

/* Login Form Container */
.infotel-sales-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
}

.infotel-sales-login-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 400px;
}

.infotel-sales-login-header {
    text-align: center;
    margin-bottom: 30px;
}

.infotel-sales-login-header h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.infotel-sales-login-header p {
    color: #666;
    font-size: 16px;
}

.infotel-sales-login-form .form-group {
    margin-bottom: 20px;
}

.infotel-sales-login-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.infotel-sales-login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.infotel-sales-login-form input:focus {
    outline: none;
    border-color: #d32f2f;
}

.login-btn {
    width: 100%;
    background: #d32f2f;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.login-btn:hover {
    background: #b71c1c;
}

.login-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Remember Me Checkbox Styles */
.remember-me-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    user-select: none;
    line-height: 1;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #d32f2f;
    cursor: pointer;
    margin: 0 6px 0 0;
    vertical-align: middle;
    flex-shrink: 0;
}

.checkbox-label:hover input[type="checkbox"] {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}



/* Forgot Password Link Styles */
.forgot-password-group {
    text-align: center;
    margin-top: 15px;
}

.forgot-password-link {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* Forgot Password Form Styles */
.forgot-password-form {
    display: none;
}

.forgot-password-form .form-group {
    margin-bottom: 20px;
}

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

.forgot-password-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.forgot-password-form input:focus {
    outline: none;
    border-color: #d32f2f;
}

.back-to-login-group {
    text-align: center;
    margin-top: 15px;
}

.back-to-login-link {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-to-login-link:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* Reset Password Form Styles */
.reset-password-form {
    display: block;
}

.reset-password-form .form-group {
    margin-bottom: 20px;
}

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

.reset-password-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.reset-password-form input:focus {
    outline: none;
    border-color: #d32f2f;
}





.login-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.login-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.login-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}



/* Responsive Design */
@media (max-width: 768px) {
    .infotel-sales-login-container {
        padding: 15px;
    }
    
    .infotel-sales-login-box {
        padding: 30px 20px;
    }
} 