body {
    background-color: #f8f9fa;
}

body.login {
    background: linear-gradient(135deg, #46da66 0%, #0c8f43 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.brand-header {
    background: linear-gradient(135deg, #46da66 0%, #0c8f43 100%);
    color: white;
    padding: 40px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}
.form-section {
    padding: 40px;
}
.btn-primary {
    background: linear-gradient(135deg, #46da66 0%, #0c8f43 100%);
    border: none;
    padding: 12px;
    font-weight: 600;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0ce43b 0%, #04d85c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
}
.feature-list i {
    margin-right: 8px;
}

.register-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.password-strength {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.verify-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.content-section {
    padding: 40px;
}
.success-icon {
    font-size: 4rem;
    color: #28a745;
}
.error-icon {
    font-size: 4rem;
    color: #dc3545;
}

.navbar {
    background: linear-gradient(135deg, #469dda 0%, #1168b3 100%) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.content-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.welcome-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 15px;
}
.stat-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}
.icon-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}
.icon-success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: white;
}
.icon-info {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    color: white;
}
.icon-warning {
    background: linear-gradient(135deg, #f09819 0%, #edde5d 100%);
    color: white;
}
.badge-custom {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}
.reset-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.password-requirements {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.pricing-card.featured {
    border-color: #667eea;
    border-width: 3px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}
.pricing-card.current-plan {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list i {
    color: #5cb85c;
    margin-right: 10px;
}

.feature-list span {
    font-weight: 600;
    color: #343a40;
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
