body {
    background: #f4f6fa;
    color: #222;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.main-content {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
}

.themed-box {
    background: #23283a;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 32px 36px;
    max-width: 420px;
    width: 100%;
}

.themed-header {
    color: #00bfff;
    text-align: center;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.support-form-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 36px;
    max-width: 420px;
    width: 100%;
    margin: 32px 0;
}

.form-title {
    text-align: center;
    margin-bottom: 24px;
    color: #005fa3;
    font-size: 1.7em;
    font-weight: 600;
    letter-spacing: 1px;
}

.support-form .form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
    font-size: 1em;
}

.form-value {
    background: #f0f4fa;
    color: #444;
    border-radius: 4px;
    padding: 7px 10px;
    margin: 0 0 8px 0;
    font-size: 1em;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #b5c3d1;
    border-radius: 5px;
    background: #f9fbfd;
    color: #222;
    font-size: 1em;
    transition: border 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #005fa3;
    outline: none;
    background: #fff;
}

.form-submit {
    width: 100%;
    padding: 12px 0;
    background: #005fa3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,95,163,0.08);
}

.form-submit:hover {
    background: #0078d7;
}

@media (max-width: 600px) {
    .support-form-container {
        padding: 18px 6vw;
    }
    .main-content {
        padding-top: 20px;
    }
}

.themed-button {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #00bfff 60%, #0078d7 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,191,255,0.08);
}

.form-submit:hover {
    background: #005fa3;
}

.themed-button:hover {
    background: linear-gradient(90deg, #0078d7 60%, #00bfff 100%);
    box-shadow: 0 4px 16px rgba(0,191,255,0.15);
}

.thank-you-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 34, 40, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.thank-you-message {
    background: #fff;
    color: #222;
    padding: 36px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    text-align: center;
    font-size: 1.2em;
}
