/* public/styles.css */
:root {
    --bg: #000;
    --card: #000;
    --muted: #9aa4b2;
    --accent: #f4b400;
    --glass: rgba(255, 255, 255, 0.03);
    --input-bg: rgba(255, 255, 255, 0.03);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

/* Card */
.card {
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    max-height: 500px;
    background: var(--card);
    border-radius: 16px;
    border: 1px solid var(--accent);
    padding: 90px 28px 28px;
    box-shadow: 0 10px 30px rgba(23, 15, 2, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    overflow: visible;
    text-align: left;
}

/* Logo sits above card, centered */
.logo-wrap {
    position: absolute;
    left: 50%;
    top: -75px;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(23, 15, 2, 0.7);
    padding: 10px;
}

.logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
}

/* Title */
.card-title {
    margin: 0 0 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
}

/* Form */
.form {
    margin-top: 6px
}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px
}

.field label {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 6px;
}

input[type="email"],
input[type="date"],
input[type="number"],
input[type="text"],
input[type="company-website"],
input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: var(--input-bg);
    color: #fff;
    outline: none;
    font-size: 0.95rem;
    transition: box-shadow .15s, transform .06s, border-color .12s;
    -webkit-appearance: none;
}

.smthyummy {
    opacity: 0;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: 0;
}


input::placeholder {
    color: #fff;
}

input:focus {
    box-shadow: 0 6px 18px rgba(23, 15, 2, 0.7);
    border-color: rgba(244, 180, 0, 0.7);
    transform: translateY(-1px);
}

/* two column layout for medium screens */
.two-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
}

/* actions */
.actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.btn {
    background: var(--accent);
    color: rgba(23, 15, 2, 0.7);
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(244, 180, 0, 0.14);
    transition: transform .12s, box-shadow .12s, opacity .1s;
}

.btn:active {
    transform: translateY(1px)
}

.btn:disabled {
    opacity: .6;
    cursor: default
}

.success {
    color: #9be7a6;
    font-size: 0.92rem;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
}

/* show success */
.success.show {
    opacity: 1;
    transform: translateY(0);
}

.field-error {
    color: #ff6b6b;
    font-size: 0.92rem;
}

/* small screens */
@media (max-width: 420px) {
    .card {
        padding: 66px 18px 20px
    }

    .logo-wrap {
        width: 80px;
        height: 80px;
        top: -40px
    }

    .logo {
        width: 64px;
        height: 64px
    }

    .two-col {
        grid-template-columns:1fr
    }
}