/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body, html {
    height: 100%;
    background-color: #ececec;
}

/* Center the form on the page */
.notification-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    color: #333333;
}

/* Style form elements */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333333;
    font-size: 18px;
}

.form-group input[type="text"],
.form-group textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333333;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Style the submit button */
.send-button {
    width: calc(100% - 20px);
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #5cb85c;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.send-button:hover,
.send-button:focus {
    background-color: #4cae4c;
}

/* Add some space at the bottom of the form */
.notification-form::after {
    content: "";
    display: block;
    height: 20px;
}

/* Responsive design */
@media (max-width: 600px) {
    .notification-form {
        padding: 20px;
    }
    
    .form-group input[type="text"],
    .form-group textarea,
    .send-button {
        width: 100%;
    }
}


.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

/* Apply the same styles to the textarea as well */
.form-control textarea {
    height: 150px; /* Adjust the height as needed */
    resize: vertical;
}
