/* Full page background layout */
body {
    margin: 0;
    padding: 30px;
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(to bottom, white 25%, #f57c23 25%);
    min-height: 100vh;
}

/* Inner content container */
.container {
    max-width: 90vw;
    margin: 40px auto;
    padding: 30px 15px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Form layout */
.container form {
    display: flex;
    flex-direction: column;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

label {
    display: block;
    margin: 5px 0 3px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Buttons */
button,
a.feedback-button {
    background-color: #00447c;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 4px;
}

button.lower {
    background: #d33;
}

button.success {
    background: #007c3b;
}

/* Logo */
.logo {
    width: 175px;
    margin-bottom: 20px;
}

/* Message boxes */
.message {
    padding: 12px;
    margin: 20px auto;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.info {
    background-color: #d1ecf1;
    color: #0c5460;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 2px solid #00447c;
    box-shadow: 0 0 5px rgba(0, 68, 124, 0.3);
    background-color: #f9f9f9;
    transition: all 0.2s ease;
}

