/* WOD Capture — minimal stylesheet */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    margin: 0;
    padding: 1rem;
}

main {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

p {
    margin: 0.5rem 0 1rem;
}

/* Forms */

form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

input[type="email"],
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

input[type="email"]:focus,
input[type="text"]:focus {
    outline: 2px solid #2563eb;
    border-color: transparent;
}

button[type="submit"] {
    padding: 0.7rem 1.25rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}

button[type="submit"]:hover {
    background: #1d4ed8;
}

/* Muted small print */

.fineprint {
    font-size: 0.8rem;
    color: #666;
}

/* Responsive */

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    button[type="submit"] {
        width: 100%;
    }
}
