/* Login Page Styles */

.hero-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    padding: 2rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #00a8d7;
}

.hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-btn-primary {
    background-color: #00a8d7;
    color: white;
}

.hero-btn-primary:hover {
    background-color: #008cbf;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 168, 215, 0.25);
}

.hero-btn-secondary {
    background-color: white;
    color: #00a8d7;
    border: 2px solid #00a8d7;
}

.hero-btn-secondary:hover {
    background-color: #f0f9fc;
    transform: translateY(-2px);
}

.login-section {
    background-color: #f8f9fa;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.login-box {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.login-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.login-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background-color: #00a8d7;
    color: white;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #008cbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 168, 215, 0.25);
}

.features-section {
    padding: 3rem 1.5rem;
    background: white;
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 168, 215, 0.12);
    transform: translateY(-3px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ccf2fb 0%, #99e5f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: #00a8d7;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.625rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .login-box {
        padding: 1.5rem;
    }

    .features-section {
        padding: 2rem 1rem;
    }
}
