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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #2C5F7C 0%, #4A9EBF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.construction-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.6s ease;
}

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

.logo {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h1 {
    color: #2C5F7C;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: #E8A87C;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.password-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.password-label {
    display: block;
    color: #2C5F7C;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
}

.password-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: #4A9EBF;
}

.submit-btn {
    width: 100%;
    background: #E8A87C;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2C5F7C;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.construction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
