/* Make the entire page truly black */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Subtle background vignette */
body {
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 1) 55%);
}

/* Layout */
.csditto-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.csditto-hero {
    text-align: center;
    width: 100%;
    max-width: 920px;
}

/* Logo: smaller, with a soft glow */
.csditto-logo {
    width: 240px;
    max-width: 70vw;
    height: auto;
    display: block;
    margin: 0 auto 22px auto;
    filter: drop-shadow(0 14px 40px rgba(0,0,0,0.55))
            drop-shadow(0 0 18px rgba(255,255,255,0.08));
}

/* Input row: sleek, dark, rounded */
.csditto-form-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
}

/* Label: subtle */
.csditto-label {
    margin: 0;
    padding: 0 6px 0 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
}

/* Input: dark field */
.csditto-input {
    width: 420px;
    max-width: 52vw;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    outline: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 14px;
}

.csditto-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* Better focus */
.csditto-input:focus {
    border-color: rgba(255, 212, 0, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.10);
}

/* Button: modern, slightly “CS gold” vibe */
.csditto-button {
    padding: 12px 16px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    background: linear-gradient(180deg, #ffe27a, #ffcc00);
    box-shadow: 0 10px 28px rgba(255, 204, 0, 0.18);
}

.csditto-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(255, 204, 0, 0.22);
}

.csditto-button:active {
    transform: translateY(0px);
}

/* Helper text: cleaner typography */
.csditto-help {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 212, 0, 0.90);
}

.csditto-help-strong {
    font-weight: 800;
}

/* Generic message: subtle */
.csditto-message {
    margin: 18px auto 0 auto;
    display: inline-block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
}

/* Leetify badge: bottom-right, subtle, no “pop out” */
.csditto-powered-by {
    position: fixed;
    right: 22px;
    bottom: 18px;
    opacity: 0.85;
    z-index: 50;
}

.csditto-powered-by img {
    height: 66px;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
}

.csditto-powered-by:hover {
    opacity: 1;
}

/* Mobile: stack input/button nicely */
@media (max-width: 640px) {
    .csditto-form-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 520px;
    }

    .csditto-label {
        align-self: flex-start;
        padding: 2px 6px 0 6px;
    }

    .csditto-input {
        width: 100%;
        max-width: none;
    }

    .csditto-button {
        width: 100%;
    }
}
