/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #000;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 75px; /* Matching the Figma dimensions (74.96px) */
    width: auto;
    display: block;
}

.navigation {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-family: 'Chilanka', cursive;
    font-size: 24px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0066CC;
}

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: #0066CC;
    text-underline-offset: 4px;
}

/* Main Content */
.main-content {
    flex: 1;
    background: #E6F2FF; /* Light blue background */
    padding: 60px 40px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column - Illustration */
.illustration-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

/* Right Column - Form */
.form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.headline {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600; /* SemiBold */
    color: #0897E6;
    line-height: 1.2;
    margin-bottom: 8px;
}

.headline-brand {
    color: #0278B8;
}

.body-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400; /* Regular */
    color: #000;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cta-text {
    font-family: 'Poppins';
    font-size: 16px;
    color: #0897E6;
    font-weight: 500;
    margin-bottom: 8px;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.form-group {
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #000;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #0066CC;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    background: #FFD700; /* Yellow */
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
}

.submit-btn:hover {
    background: #FFC700;
    transform: translateY(-1px);
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    background: #FFD700;
    transform: none;
}

.btn-loader {
    display: inline-block;
}

/* Form Message Styles */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: none;
    margin-top: -8px;
    text-align: center;
    animation: slideDown 0.3s ease;
}

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

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

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

/* Footer */
.footer {
    background: #FFD700; /* Yellow */
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600; /* SemiBold */
    color: #000;
}

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

    .illustration-column {
        order: 2;
    }

    .form-column {
        order: 1;
    }

    .headline {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .main-content {
        padding: 40px 20px;
    }

    .headline {
        font-size: 28px;
    }

    .body-text,
    .cta-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 60px;
    }

    .nav-link {
        font-size: 18px;
    }

    .headline {
        font-size: 24px;
    }

    .illustration-image {
        max-width: 100%;
    }
}

/* Password Page Styles */
.password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6F2FF;
    padding: 20px;
}

.password-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
    text-align: center;
}

.password-box .logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.password-box .logo-image {
    height: 75px;
    width: auto;
}

.password-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #0897E6;
    margin-bottom: 12px;
}

.password-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.password-form .form-group {
    width: 100%;
}

.password-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #000;
    border-radius: 6px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #000;
    text-align: center;
    letter-spacing: 2px;
    transition: border-color 0.3s ease;
}

.password-form .form-group input:focus {
    outline: none;
    border-color: #0066CC;
}

.password-form .submit-btn {
    width: 100%;
    margin-top: 10px;
}

.error-message {
    color: #d32f2f;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: -10px;
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (max-width: 480px) {
    .password-box {
        padding: 40px 30px;
    }

    .password-title {
        font-size: 28px;
    }

    .password-subtitle {
        font-size: 14px;
    }

    .password-form .form-group input {
        font-size: 16px;
        padding: 12px 14px;
    }
}
