html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #1e3c72;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
    background: radial-gradient(circle, rgba(22, 160, 133, 0.9) 0%, rgba(22, 160, 133, 0.6) 30%, rgba(22, 160, 133, 0.3) 60%, transparent 100%);
}

.orb-1, .orb-2, .orb-3, .orb-4, .orb-5, .orb-6, .orb-7 {
    width: 200px;
    height: 200px;
}

.welcome-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 480px;
    width: 90%;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 10;
}

h1 {
    color: #1e3c72;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
}

.welcome-content {
    color: #4a5568;
    line-height: 1.6;
}

.welcome-content p {
    font-size: 1.1rem;
    margin: 16px 0;
}

.password-section {
    margin: 32px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

#passwordInput {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#passwordInput:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22, 160, 133, 0.1);
}

#accessButton {
    padding: 12px 24px;
    background: linear-gradient(135deg, #16a085, #1e3c72);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#accessButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
}

#accessButton:active {
    transform: translateY(0);
}

.login-alternative {
    margin-top: 24px;
    font-size: 0.95rem;
    color: #718096;
}

a {
    color: #16a085;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #1e3c72;
    text-decoration: underline;
}


