/* Position the canvas to be the background */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind all other content */
}

/* --- FORM STYLES START HERE --- */

/* Style for the labels (e.g., "Full Name") */
.form-label {
    display: block;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem; /* 4px */
}

/* Style for all input, select, and textarea fields */
.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem; /* 8px */
    padding: 0.75rem; /* 12px */
    color: white;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
    outline: none;
    border-color: #A855F7; /* Purple color */
}

/* Style for the main submit button */
.form-submit-button {
    background-color: #9333EA; /* Purple */
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.5rem; /* 8px 24px */
    border-radius: 0.5rem; /* 8px */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-button:hover {
    background-color: #A855F7; /* Lighter Purple */
}

/* Style for the secondary "Back" button */
.form-back-button {
    margin-left: 1rem; /* 16px */
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem; /* 14px */
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.form-back-button:hover {
    color: white;
}