
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f7;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

h2 {
    text-align: center;
    color: #2b5e8a;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #4a90e2;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #2b5e8a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #1a4572;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="text"]:disabled, input[type="email"]:disabled, textarea:disabled {
    background-color: #f0f4f7;
    cursor: not-allowed;
}



.button-group {
    display: flex;
    justify-content: space-between; /* Align buttons in one line */
    gap: 10px; /* Adds spacing between buttons */
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.back-button {
    background-color: #ccc; /* Light grey */
    color: black;
}

.back-button:hover {
    background-color: #aaa;
}

button[type="submit"] {
    background-color: #007bff; /* Blue */
    color: white;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}


