html {
    margin: 0;
}

body {
    font-family: 'SF Pro Text', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
    /* Removed display: flex, justify-content, align-items to allow natural scrolling */
    min-height: 100vh; /* Ensure body is at least viewport height */
    overflow-y: scroll; /* Force vertical scrollbar to be always visible */
}

.hero-section {
    width: 100vw;
    height: 100vh;
    background-image: url('tp/fm2.png'); /* !!! Replace with your image URL !!! */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden; /* Hide any overflow from content */
    /* Add a subtle overlay for better text readability */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
    }
}

.hero-content {
    position: relative; /* Position relative to overlay */
    z-index: 1;
    max-width: 80%;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.scroll-hint {
    font-size: 1.5em; /* Restored font-size */
    animation: bounce 2s infinite; /* Restored animation */
    cursor: pointer; /* Added cursor */
    margin-top: 50px;
}

@keyframes bounce { /* Restored keyframes */
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Removed .login-section and .login-container styles */

/* Reusing iOS input/button styles from style.css for consistency */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95em;
}

.ios-input,
.ios-textarea,
.ios-select {
    width: calc(100% - 28px); /* Adjusted for padding and border */
    padding: 12px 14px;
    border: 1px solid #cdd5df;
    border-radius: 8px; /* More rounded */
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-appearance: none; /* Remove default browser styling */
    -moz-appearance: none;
    appearance: none;
}

.ios-input:focus,
.ios-textarea:focus,
.ios-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.2); /* iOS-like focus glow */
    outline: none;
}

.ios-button-primary {
    background-color: #1a73e8; /* Primary blue */
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 10px; /* More rounded */
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 15px;
    outline: none;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.2);
    width: 100%; /* Make button full width */
}

.ios-button-primary:hover {
    background-color: #0d47a1;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(26, 115, 232, 0.3);
}

.ios-button-primary:disabled {
    background-color: #a0cbed;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.message {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    font-size: 0.95em;
}

.message.error {
    background-color: #ffe0e6;
    color: #d9001b;
    border: 1px solid #ffb3c1;
}

.message.success {
    background-color: #e6ffed;
    color: #008a2e;
    border: 1px solid #b3ffc7;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .scroll-hint {
        font-size: 1.2em;
    }

    /* Removed .login-container styles for media query */
}
