:root {
    --mango-primary: #ff8f00;
    --mango-secondary: #ffb300;
    --mango-accent: #ffd54f;
    --mango-dark: #e65100;
    --mango-bg: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffa000 100%);
    --text-color: #5d4037;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: white;
    min-height: 100vh;
}

.login-bg {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.login-brand {
    text-align: center;
    padding: 48px 24px 32px;
    background: linear-gradient(to bottom, #ff8f00, #ff6f00);
    color: white;
}

.brand-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px; height: 100px;
    background: white;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    animation: floatLogo 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes floatLogo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.brand-logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.brand-name {
    margin: 0;
    font-size: 3.0rem;
    font-weight: 400;
    color: #fff;
    font-family: 'Great Vibes', cursive;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline { margin: 12px 0 0; font-size: 1rem; color: rgba(255,255,255,0.9); }
.brand-origin { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-style: italic; }

.login-actions {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-prompt {
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
}

.sold-out-body {
    text-align: center;
    color: var(--text-color);
}

.sold-out-main {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 24px;
}

.notify-me-container {
    background: #fffde7;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ffd54f;
    margin-bottom: 20px;
}

.notify-me-container h3 {
    margin: 0 0 16px;
    color: var(--mango-dark);
    font-size: 1.1rem;
}

.notify-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.custom-input:focus {
    border-color: var(--mango-primary);
}

.custom-button {
    background-color: var(--mango-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.custom-button:hover {
    background-color: var(--mango-dark);
}

.status-message {
    font-size: 0.85rem;
    margin-top: 8px;
    height: 1rem;
}

.status-message.success { color: #43a047; }
.status-message.error { color: #d32f2f; }

.contact-note {
    font-size: 0.85rem;
    margin-top: 16px;
}

.contact-note a {
    color: var(--mango-dark);
    font-weight: 700;
    text-decoration: none;
}

.guest-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: #795548;
    background: #fff8e1;
    padding: 12px;
    border-radius: 10px;
    line-height: 1.4;
}

.note-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}
