@import url('https://fonts.googleapis.com/css2?family=Pusab&display=swap');

body {
    font-family: 'Pusab', sans-serif;
    background-color: #2f3136;
    color: #dcddde;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #36393f;
    padding: 2em 3em;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
    width: 100%;
    max-width: 600px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid #202225;
}

h1 {
    color: #ffffff;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    color: #b9bbbe;
}

.success-message {
    color: #43b581;
}

h3 {
    border-bottom: 2px solid #2f3136;
    padding-bottom: 0.5em;
    margin-top: 1.5em;
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5em;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.8em;
    font-weight: normal;
    color: #b9bbbe;
    font-size: 0.9rem;
    text-transform: uppercase;
}

textarea, select, input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #202225;
    background-color: #202225;
    color: #dcddde;
    border-radius: 5px;
    font-family: 'Pusab', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

select option {
    background: #2f3136;
    color: #dcddde;
}

textarea:focus, select:focus, input[type="password"]:focus {
    outline: none;
    border-color: #5865F2;
    box-shadow: none;
}

button {
    background-color: #5865F2;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    font-family: 'Pusab', sans-serif;
    text-transform: uppercase;
}

button:hover {
    background-color: #4752c4;
}

button:active {
    transform: scale(0.98);
}

button:disabled {
    background-color: #4f545c;
    color: #969696;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

#thank-you {
    padding: 2em 0;
}

footer {
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#show-dev-login-btn {
    background-color: #4f545c;
    font-size: 0.8rem;
    padding: 8px 12px;
}

#show-dev-login-btn:hover {
    background-color: #5d6269;
}

.dev-login {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dev-login input {
    flex-grow: 1;
}

.error-message {
    color: #f04747;
    font-weight: normal;
    margin-top: 1em;
}

#responses-list {
    margin-top: 1.5em;
    text-align: left;
}

.response-item {
    background-color: #2f3136;
    border-left: 5px solid #5865F2;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 0 5px 5px 0;
}

.response-item p {
    margin: 0.5em 0;
}

.response-item strong {
    color: #b9bbbe;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: normal;
}

.response-item .response-meta {
    font-size: 0.8em;
    color: #72767d;
    margin-top: 1em;
}