/* Submit Page Specific Styles */

body {
    line-height: 1.6;
    max-width: 600px;
    margin: 40px auto;
    padding: 2rem;
    border: 1px solid #3a3a3c;
    border-radius: 8px;
}

label {
    display: block;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #d7dadc;
    font-weight: 600;
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #3a3a3c;
    background-color: #202124;
    color: white;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

input:focus {
    border-color: #3a3a3c;
    outline: none;
}

button {
    width: 100%;
    margin: 1.25rem auto 2rem auto;
    padding: 0.75rem 2rem;
    background-color: #b59f3b;
    border: none;
    color: white;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #538d4e;
}

button:active {
    background-color: #6aaa64;
    transform: translateY(1px);
}

#status {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #d7dadc;
}

/* Status message colors */
#status[style*="color: #6aaa64"] {
    /* Success messages already have inline color */
}

#status[style*="color: #cf222e"] {
    /* Error messages already have inline color */
}

#status[style*="color: #0969da"] {
    /* Info messages already have inline color */
}
