/*
 * Song Request Manager - FM Dhadak Teal & Gold Theme
 * Version: 4.0
 */

/* --- Main Form Container --- */
#srm-form-wrapper {
    background-color: #00a99d; /* Main brand teal color */
    border-radius: 12px;
    padding: 2.5em;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0,0,0,0.1);
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,0.1);
}

/* --- Form Header --- */
#srm-form-wrapper h2 {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* --- Success & Error Messages --- */
#srm-form-wrapper .srm-success-message {
    text-align: center;
    font-size: 1.2em;
    color: #ffffff;
    padding: 2em 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* --- Form Element Styles --- */
#song-request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

#song-request-form p {
    margin: 0;
    padding: 0;
}

#song-request-form label {
    font-weight: 600;
    margin-bottom: 0.5em;
    display: block;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#song-request-form input[type="text"],
#song-request-form input[type="email"],
#song-request-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1em;
    background-color: rgba(0, 0, 0, 0.15); /* Subtle dark overlay on teal */
    color: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

#song-request-form input[type="text"]::placeholder,
#song-request-form input[type="email"]::placeholder,
#song-request-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


#song-request-form input[type="text"]:focus,
#song-request-form input[type="email"]:focus,
#song-request-form textarea:focus {
    outline: none;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #f1c40f; /* Yellow accent on focus */
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.3);
}

#song-request-form textarea {
    min-height: 100px;
    resize: vertical;
}

/* --- reCAPTCHA container --- */
#song-request-form .recaptcha-wrapper {
    display: flex;
    justify-content: center;
    padding: 0.5em 0;
}


/* --- Submit Button (Styled with Brand Yellow) --- */
#song-request-form input[type="submit"] {
    background-color: #f1c40f; /* Brand yellow/gold */
    color: #2c3e50; /* Dark text for contrast */
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 16px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    -webkit-appearance: none;
    width: 100%;
}

#song-request-form input[type="submit"]:hover {
    transform: translateY(-3px);
    background-color: #f39c12; /* Slightly darker orange/gold on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}