/* Container for the form */
.form-section.form-spad.form-page .form-container {
    max-width: 400px !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    padding: 24px 16px 16px;
    box-sizing: border-box !important;
    color: #fff;
}

/* Each form row */
.form-row-element {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Labels */
label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
    font-size: 0.9rem;
    transition: color 0.2s;
}

/* Inputs and checkbox */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #2c2c2c;
    color: #fff;
    font-size: 1rem;
    margin-top: 4px;
    box-sizing: border-box;
    transition: border 0.2s;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border: 1.5px solid #ffb320;
    outline: none;
}

input[type="checkbox"] {
    accent-color: #ffb320;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Terms label link */
label a {
    color: #ffb320;
    text-decoration: underline;
    transition: color 0.2s;
}

/* Submit button */
.form-btn {
    background: #ffb320;
    color: #222;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}


/* Responsive for small screens */
@media (max-width: 600px) {
        .form-section.form-spad.form-page .form-container {
            padding: 18px 8px 12px;
            max-width: 100% !important; 
        }
    }

/* License: MIT
https://github.com/example/repo/blob/main/file.js */