/* Landing Page Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

/* Accessibility - Focus States */
*:focus {
    outline: 3px solid #4A90E2;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid #4A90E2;
    outline-offset: 2px;
}

.landing-page {
    width: 100%;
    min-height: 100vh;
}

/* Header/Navigation */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions .btn-register {
    background-color: transparent;
    color: #ffffff;
    padding: 0.6rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-actions .btn-register:hover {
    background-color: #ffffff;
    color: #4A90E2;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #40BFEF 0%, #2980E8 50%, #1E3A8A 100%);
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 800px;
    height: 800px;
    background-image: url('../img/Icon White.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Decorative circles */
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Hero Left */
.hero-left {
    padding-right: 2rem;
}

.logo-section {
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-description strong {
    font-weight: 600;
}

.hero-description-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
}

/* Sign In Card */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.signin-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.signin-card h3 {
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.signin-form label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.signin-form .form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #B8E6F5;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.signin-form .form-input:focus {
    outline: none;
    background-color: #A0DBF0;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.btn-signin {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #0000CD 0%, #00008B 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.btn-register-alt {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #0000CD 0%, #00008B 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-register-alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.link-forgot {
    display: block;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-forgot:hover {
    color: #4A90E2;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #40BFEF 0%, #2980E8 100%);
    padding: 4rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
/* Tablet Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .brand-logo {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-right {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-header .container {
        padding: 0 1rem;
    }

    /* Show hamburger menu on tablet */
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #1E3A8A 0%, #0f1f4d 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    .nav-actions {
        order: 2;
    }

    .nav-actions .btn-register {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Close button in mobile menu */
    .nav-links::before {
        content: '×';
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
        color: #ffffff;
        cursor: pointer;
        line-height: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .main-header .container {
        padding: 0 1rem;
    }

    .page-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .hero-section {
        padding: 5rem 0 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    .brand-logo {
        max-width: 250px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .signin-card {
        padding: 1.5rem;
    }

    .nav-links {
        width: 85%;
        max-width: 300px;
    }

    .nav-actions .btn-register {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Form adjustments */
    .form-group label {
        font-size: 0.9rem;
    }

    .form-control, .form-input {
        font-size: 0.95rem;
        padding: 0.7rem;
    }

    .btn-signin, .btn-next, .btn-send {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

/* Error messages */
.error-message, .error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form validation states */
.form-control.is-invalid,
.form-control.error {
    border: 2px solid #dc3545;
    background-color: #ffe6e6;
}

.form-control.is-valid {
    border: 2px solid #28a745;
    background-color: #e6ffe6;
}

/* Flash messages on landing page */
.message {
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    animation: slideDown 0.5s ease;
}

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

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

.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Flash messages inside cards */
.signin-card .message,
.login-card .message,
.register-card .message {
    margin: 0 0 1.5rem 0;
    max-width: 100%;
}

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

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

.signin-card .message.info,
.login-card .message.info,
.register-card .message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Alert styling for success/error messages */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    position: relative;
    animation: slideDown 0.5s ease;
}

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

.alert-danger, .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.alert button[data-bs-dismiss="alert"],
.alert .close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert button[data-bs-dismiss="alert"]:hover,
.alert .close:hover {
    opacity: 1;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================
   FEATURES PAGE STYLES
   =========================== */

.features-page {
    min-height: 100vh;
}

.features-hero-section {
    background: linear-gradient(135deg, #40BFEF 0%, #2980E8 50%, #1E3A8A 100%);
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 100vh;
    overflow: hidden;
}

.features-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 1080px;
    height: 1080px;
    background-image: url('../img/Icon White.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.features-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 0;
}

.laptop-mockup {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
}

.feature-annotations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.annotation {
    position: absolute;
    display: flex;
    align-items: center;
}

.annotation-text {
    background: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
}

.annotation-left .annotation-text {
    text-align: left;
}

.annotation-right .annotation-text {
    text-align: right;
}

.annotation-bottom .annotation-text {
    text-align: center;
}

.annotation-line {
    width: 120px;
    height: 3px;
    background: #ffffff;
}

.annotation-left {
    left: 0;
    flex-direction: row;
}

.annotation-left .annotation-line {
    margin-right: 1rem;
}

.annotation-left.annotation-1 {
    top: 35%;
    left: -5%;
}

.annotation-left.annotation-2 {
    top: 65%;
    left: -5%;
}

.annotation-right {
    right: 0;
    flex-direction: row;
}

.annotation-right .annotation-line {
    margin-right: 1rem;
}

.annotation-right.annotation-1 {
    top: 25%;
    right: -5%;
}

.annotation-right.annotation-2 {
    top: 70%;
    right: -5%;
}

.annotation-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: center;
}

.annotation-bottom .annotation-line {
    width: 3px;
    height: 100px;
    margin-bottom: 1rem;
}

.features-cta {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #0000CD 0%, #00008B 100%);
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 139, 0.3);
    color: #ffffff;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-page {
    min-height: 100vh;
}

.contact-hero-section {
    background: linear-gradient(135deg, #40BFEF 0%, #2980E8 100%);
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 100vh;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 800px;
    height: 800px;
    background-image: url('../img/Icon White.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: #ffffff;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
}

.info-block a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-block a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.contact-form-card {
    background: #0000CD;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    width: 100%;
    padding: 1rem;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* ===========================
   REGISTER PAGE STYLES (redesign)
   =========================== */

.register-page {
    min-height: 100vh;
}

.register-hero-section {
    background: linear-gradient(135deg, #40BFEF 0%, #2980E8 50%, #1E3A8A 100%);
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 100vh;
    overflow: hidden;
}

.register-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 800px;
    height: 800px;
    background-image: url('../img/Icon White.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.register-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.register-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}

.register-card h2 {
    color: #0000CD;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.register-form label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.register-form .form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #B8E6F5;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.register-form .form-control:focus {
    outline: none;
    background-color: #A0DBF0;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.register-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.btn-next {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0000CD 0%, #00008B 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

/* ===========================
   LOGIN PAGE STYLES
   =========================== */

.login-page {
    min-height: 100vh;
}

.login-hero-section {
    background: linear-gradient(135deg, #40BFEF 0%, #2980E8 50%, #1E3A8A 100%);
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 100vh;
    overflow: hidden;
}

.login-hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 800px;
    height: 800px;
    background-image: url('../img/Icon White.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.login-form-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.login-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

.login-card h2 {
    color: #0000CD;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

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

.login-form label {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.login-form .form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    background-color: #B8E6F5;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    outline: none;
    background-color: #A0DBF0;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.form-check-label {
    color: #1a1a1a;
    font-size: 0.95rem;
    margin: 0;
}

.btn-signin {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0000CD 0%, #00008B 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 139, 0.3);
}

.form-links {
    text-align: center;
}

.link-forgot, .link-register {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-forgot:hover, .link-register:hover {
    color: #4A90E2;
}

.forgot-description {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        justify-content: center;
    }

    .annotation-text {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .annotation-line {
        width: 50px;
    }

    .annotation-bottom .annotation-line {
        height: 40px;
    }

    .register-form .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form-card, .register-card, .login-card {
        padding: 2rem 1.5rem;
    }

    .annotation {
        display: none;
    }
}

/* ===========================
   MEETING JOIN PAGE STYLES
   =========================== */

.meeting-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.meeting-details {
    flex: 1;
}

.meeting-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.meeting-name {
    color: #1E3A8A;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.moderator-info {
    text-align: center;
    margin-left: 1rem;
}

.moderator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4A90E2;
    margin-bottom: 0.5rem;
}

.moderator-name {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Meeting join form adjustments */
.login-page .form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

/* Mobile responsiveness for meeting join */
@media (max-width: 640px) {
    .meeting-info-header {
        flex-direction: column;
        text-align: center;
    }

    .moderator-info {
        margin-left: 0;
        margin-top: 1rem;
    }

    .meeting-details {
        width: 100%;
    }
}

/* ===========================
   FOOTER STYLES
   =========================== */

.main-footer {
    background: linear-gradient(135deg, #1E3A8A 0%, #0f1f4d 100%);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

