/* === BASE THEME === */
body {
    border: 2px double rgb(5, 100, 100);
    min-height: 50vh;
    background: linear-gradient(135deg, #010103, #010343);
    font-family: "Segoe UI", sans-serif;
    padding-bottom: 95px;
    color: #f2f2f2;
}

/* Center logo */
.center-img {
    display: block;
    margin: 20px auto;
}

/* Titles */
.title {
    text-align: center;
    color: #00e6e6;  /* Cyan teal highlight */
    margin-top: 10px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}

.subtitle {
    text-align: center;
    color: #9b70ff;  /* Purple accent */
    font-size: 16px;
    margin-bottom: 30px;
}

/* === FORM CONTAINER === */
.feedback-form {
    max-width: 500px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.3);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* === FORM LABELS === */
.feedback-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #d4d4d4;
}

/* === INPUT FIELDS === */
.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 11px 0px;
    border: 1px solid #0c6262;
    background: rgba(0,0,0,0.4);
    color: #e0ffff;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    transition: 0.25s;
}

.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form select:focus {
    border-color: #00e6e6;
    box-shadow: 0 0 6px #00e6e6;
    background: rgba(255,255,255,0.08);
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
    padding-left: 10px;
}

.feedback-form option[value="suggestion"],
.feedback-form option[value="complaint"],
.feedback-form option[value="enquiry"] {
    background-color: white;
    color: black;
}

/* === GENDER OPTIONS === */
.gender-options {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

/* === FIELDSET CARD === */
.card {
    border: 1px solid rgba(0,255,255,0.3);
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 20px;
}

.card legend {
    font-weight: bold;
    padding: 0 8px;
    color: #00e6e6;
}

/* === BUTTONS === */
#submitButton,
#backButton {
    width: 48%;
    padding: 12px;
    border: none;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
}

/* Submit (cyan green) */
#submitButton {
    background: #00b3b3;
    color: white;
}

#submitButton:hover {
    background: #009999;
}

/* Back (purple) */
#backButton {
    background: #6842ff;
    color: white;
}

#backButton:hover {
    background: #5330d9;
}

/* Remove underline on buttons */
.feedback-form a {
    text-decoration: none;
}

#feedback{
    resize: none;
}

