* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8AD8FF 0%, #F9503A 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}


/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
            padding: 1.95rem 0;
            margin: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #F9503A;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #F9503A, #8AD8FF);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #8AD8FF;
    color: white;
    padding: 12px 24px;
    /*margin: 15px 0 15px 0;*/
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 216, 255, 0.5);
    background: #6CC5F0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 800"><g opacity="0.15" stroke="white" stroke-width="2" fill="none"><path d="M50,450 Q250,440 450,420 T850,380 Q900,375 950,370" stroke-linecap="round"/><path d="M50,500 L200,490 L350,485 L500,475 L650,465 L800,455 L950,445" stroke-linecap="round"/><path d="M50,350 Q300,340 550,330 T950,310" stroke-linecap="round" stroke-width="3"/><circle cx="50" cy="450" r="6" fill="white"/><circle cx="450" cy="420" r="6" fill="white"/><circle cx="850" cy="380" r="6" fill="white"/><circle cx="950" cy="370" r="6" fill="white"/><circle cx="200" cy="490" r="5" fill="white"/><circle cx="500" cy="475" r="5" fill="white"/><circle cx="800" cy="455" r="5" fill="white"/><circle cx="300" cy="340" r="5" fill="white"/><circle cx="550" cy="330" r="5" fill="white"/><circle cx="950" cy="310" r="5" fill="white"/><rect x="80" y="250" width="50" height="350" rx="5" fill="white" opacity="0.1"/><rect x="160" y="300" width="50" height="300" rx="5" fill="white" opacity="0.15"/><rect x="240" y="280" width="50" height="320" rx="5" fill="white" opacity="0.12"/><rect x="320" y="320" width="50" height="280" rx="5" fill="white" opacity="0.1"/><rect x="400" y="260" width="50" height="340" rx="5" fill="white" opacity="0.13"/><rect x="480" y="290" width="50" height="310" rx="5" fill="white" opacity="0.11"/><rect x="560" y="270" width="50" height="330" rx="5" fill="white" opacity="0.14"/><rect x="640" y="310" width="50" height="290" rx="5" fill="white" opacity="0.1"/><rect x="720" y="250" width="50" height="350" rx="5" fill="white" opacity="0.12"/><rect x="800" y="290" width="50" height="310" rx="5" fill="white" opacity="0.11"/><rect x="880" y="270" width="50" height="330" rx="5" fill="white" opacity="0.13"/><path d="M50,600 L950,600" stroke="white" opacity="0.2" stroke-width="2"/><path d="M50,100 L50,600" stroke="white" opacity="0.2" stroke-width="2"/><text x="30" y="120" fill="white" opacity="0.3" font-size="20">100%</text><text x="30" y="270" fill="white" opacity="0.3" font-size="20">75%</text><text x="30" y="420" fill="white" opacity="0.3" font-size="20">50%</text><text x="30" y="570" fill="white" opacity="0.3" font-size="20">25%</text></g></svg>') center/contain no-repeat;
    animation: float 20s ease-in-out infinite;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: #8AD8FF;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(138, 216, 255, 0.4);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(138, 216, 255, 0.5);
    background: #6CC5F0;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(249, 80, 58, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #F9503A, #8AD8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9503A 0%, #8AD8FF 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.maintenance-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
}

.maintenance-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 4rem;
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.maintenance-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #F9503A, #8AD8FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 80, 58, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(249, 80, 58, 0);
    }
}

.maintenance-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.maintenance-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.info-box {
    background: linear-gradient(135deg, rgba(138, 216, 255, 0.2), rgba(249, 80, 58, 0.1));
    border-left: 4px solid #F9503A;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.info-box h3 {
    color: #F9503A;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.contact-info p {
    font-size: 1rem;
    color: #777;
}

.contact-info a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FF4500;
    text-decoration: underline;
}

.home-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
    margin-top: 2rem;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
    background: linear-gradient(45deg, #FF4500, #DC143C);
}

.password-center,
.form-center {
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
    flex: 1;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.alert {
  position:relative;
  padding:.75rem 1.25rem;
  margin-bottom:1rem;
  border:1px solid transparent;
  border-radius:.25rem
}

.alert-success {
  color:#155724;
  background-color:#d4edda;
  border-color:#c3e6cb
}

.alert-success hr {
  border-top-color:#b1dfbb
}

.alert-success .alert-link {
  color:#0b2e13
}

.alert-danger {
  color:#721c24;
  background-color:#f8d7da;
  border-color:#f5c6cb
}

.alert-danger hr {
  border-top-color:#f1b0b7
}

.alert-danger .alert-link {
  color:#491217
}

.captcha_img {
    float: left;
    width: 210px;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.captcha_ref {
    float: left;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 1rem;
}

.password-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.left-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-section {
    background: #8AD8FF;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.page-description {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F9503A;
    background: #fff5f5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.submit-button {
    width: 100%;
    background: #8AD8FF;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(138, 216, 255, 0.3);
}

.submit-button:hover {
    background: #6cc4f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 216, 255, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.right-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.right-section p {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Success Message */

.success-message.show {
    display: block;
}

.success-message h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.success-message p {
    color: #666;
    margin-bottom: 0.5rem;
}

.success-message .email-sent {
    color: #F9503A;
    font-weight: 600;
}

.back-link {
    display: inline-block;
    color: #074156;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #F9503A;
    text-decoration: underline;
}

/* Main Content */
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    max-width: 900px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}
        
.header-section {
    text-align: center;
    margin-bottom: 3rem;
}
        
.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
        
.page-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 400;
}
        
.form-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 20px;
}
        
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
        
.form-header h2 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}
        
.required-note,
.required {
    color: #F9503A;
    font-size: 0.9rem;
}
        
.form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
        
.form-group.full-width {
    grid-column: 1 / -1;
}
        
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Open Sans', sans-serif;
    min-height: 120px;
    resize: vertical;
}
.form-group input.checkbox {
    width: unset;
}
.form-group label.checkbox-label {
    display: inline;
    margin-left:15px;
}
        
        
.privacy-text {
    margin: 2rem 0;
    font-size: 0.9rem;
    color: #555;
}

.text-center {
    text-align: center;
}
        
.privacy-text a {
    color: #074156;
    text-decoration: none;
    font-weight: 600;
}
        
.privacy-text a:hover {
    color: #F9503A;
    text-decoration: underline;
}

.forgot-password {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}
        
/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

footer .container {
    text-align: center;
}

footer p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

footer a {
    color: #8AD8FF;
    text-decoration: none;
}

footer a:hover {
    color: #F9503A;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-content {
        padding: 2rem;
    }
    
    .maintenance-content h1 {
        font-size: 2rem;
    }
    
    .maintenance-content p {
        font-size: 1rem;
    }
    
    .maintenance-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .password-container {
        grid-template-columns: 1fr;
    }
    
    .right-section {
        display: none;
    }
    
    .left-section {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .form-container {
        padding: 2rem;
    }
            
    .page-subtitle {
        font-size: 1.1rem;
    }
            
    .form-section {
        padding: 1.5rem;
    }
            
    .form-row {
        grid-template-columns: 1fr;
    }
            
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
