* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0E21 0%, #1A1E35 50%, #0A0E21 100%);
    color: #ffffff;
    padding: 24px;
    text-align: center;
}

.container {
    max-width: 520px;
    width: 100%;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    height: 115px;
    width: auto;
}

.stars {
    font-size: 2rem;
    margin-bottom: 24px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.5;
}
.little {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.5;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 5px;
}

.email-input {
    padding: 20px 24px;
    font-size: 1.1rem;
    border: none;
    border-radius: 24px;
    background: #1A1E35;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.email-input:focus {
    background: #293056;
    box-shadow: 0 0 0 2px rgba(60, 55, 142, 0.5);
}

.submit-btn {
    padding: 20px 32px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    background: #3C378E;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 56px;
}

.submit-btn:hover {
    background: #4A44A8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(60, 55, 142, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.reassurance {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.reassurance span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.check-icon {
    color: #6BCB77;
}

.moon-decoration {
    position: fixed;
    top: 10%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.cloud-decoration {
    position: fixed;
    bottom: 15%;
    left: 8%;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
  

    .logo img {
        height: 60px;
    }

    .moon-decoration,
    .cloud-decoration {
        display: none;
    }
}

/* Success state */
.success-message {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(60, 55, 142, 0.2);
    border-radius: 20px;
    border: 2px solid rgba(60, 55, 142, 0.4);
}

.success-message.show {
    display: block;
}

.success-message h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
}

.rituel-link {
    display: inline-block;
    background: #3C378E;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.rituel-link:hover {
    background: #4A44A8;
    transform: translateY(-2px);
}

.success-message.error {
    background: rgba(207, 102, 121, 0.2);
    border-color: rgba(207, 102, 121, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-container.hidden {
    display: none;
}
