body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.badge {
    font-weight: 500;
    padding: 5px 10px;
}

.form-control, .form-select {
    border-radius: 5px;
    padding: 10px;
}

.btn {
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 500;
}

.alert {
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .card-body {
        padding: 15px;
    }
}

/* Login Page Styles */
.login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
}

.login-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.login-left-panel {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

.login-right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.brand-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.brand-name {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
}

.brand-tagline {
    opacity: 0.9;
    font-weight: 300;
}

.login-graphics {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-features {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.login-form-container {
    width: 100%;
}

.login-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #2d3748;
}

.login-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.btn-login {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
}

.form-floating label {
    padding: 0.8rem 0.75rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 992px) {
    .login-wrapper {
        flex-direction: column;
        max-width: 500px;
    }
    
    .login-left-panel {
        display: none;
    }
    
    .login-right-panel {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .login-right-panel {
        padding: 30px 20px;
    }
}

/* Register Page Styles */
.register-container {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
}

.register-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.register-left-panel {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

.register-right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.register-form-container {
    width: 100%;
}

.register-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #2d3748;
}

.register-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.btn-register {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.register-benefits {
    margin-top: 30px;
}

.benefits-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefits-list i {
    margin-right: 10px;
    color: #4cc9f0;
}

.password-strength .progress {
    height: 5px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .register-wrapper {
        flex-direction: column;
        max-width: 500px;
    }
    
    .register-left-panel {
        display: none;
    }
    
    .register-right-panel {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .register-right-panel {
        padding: 30px 20px;
    }
}

/* Forgot Password Page Styles */
.forgot-password-container {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
}

.forgot-password-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.forgot-password-left-panel {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

.forgot-password-right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
}

.forgot-password-form-container {
    width: 100%;
}

.forgot-password-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #2d3748;
}

.forgot-password-subtitle {
    color: #718096;
    margin-bottom: 30px;
}

.btn-send-link {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.btn-send-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.security-tips {
    margin-top: 30px;
}

.tips-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.tips-list {
    list-style: none;
    padding-left: 0;
}

.tips-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tips-list i {
    margin-right: 10px;
    color: #4cc9f0;
    width: 20px;
    text-align: center;
}

.support-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .forgot-password-wrapper {
        flex-direction: column;
        max-width: 500px;
    }
    
    .forgot-password-left-panel {
        display: none;
    }
    
    .forgot-password-right-panel {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .forgot-password-right-panel {
        padding: 30px 20px;
    }
}

/* Reset Password Page Specific Styles */
.password-strength {
    margin-top: 5px;
    font-size: 0.85rem;
    color: #718096;
}

.password-strength-requirements {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #718096;
}

.password-strength-requirements li {
    margin-bottom: 5px;
}

.password-strength-requirements li.valid {
    color: #38a169;
}

.password-strength-requirements li.valid::before {
    content: "✓ ";
}

.password-strength-meter {
    height: 5px;
    background-color: #e2e8f0;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    width: 0;
    background-color: #e53e3e;
    transition: width 0.3s, background-color 0.3s;
}

/* Adaptações específicas para a página de reset */
.forgot-password-form-container .alert-warning {
    background-color: #fffaf0;
    border-color: #feebc8;
    color: #dd6b20;
}

.forgot-password-form-container .btn-outline-secondary {
    border-color: #cbd5e0;
}

/* Professional Header Styles */
.top-bar {
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
}

.navbar {
    padding: 0.8rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.avatar-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu {
        margin-left: 1rem;
        box-shadow: none;
    }
}