/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Use a nice font */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: rgb(251, 255, 255);
    color: #333;
}

/* Center the container and give it some space */
.container {
    max-width: 600px;
    margin: 15px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Style the header */
.header {
    width: 100%;
    height: 13vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the logo horizontally */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    background-color: white;
    padding: 0 20px;
    position: relative;
}

.left-icons {
    position: absolute;
    left: 20px; /* Adjust the distance from the left */
    display: flex;
}

.left-icons .home-icon {
    margin-right: 3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(67, 184, 45);
    text-decoration: none;
    align-items: center;
    box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.left-icons .home-icon:hover {
    background-color: rgb(218, 218, 75);
}

.left-icons .home-icon a {
    color: #fff;
    cursor: pointer;
    /* width: 27px */
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.return-icon {
    position: absolute;
    right: 20px; /* Adjust the distance from the right */
    top: 50%;
    transform: translateY(-50%);
    background: rgb(67, 184, 45);
    color: #fff;
    padding: 8px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 2px 0px 10px rgb(119, 112, 105);
}

.return-icon:hover {
    background-color: rgb(218, 218, 75);
}

.logo-container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    width: 100%;
}

.logo-container img {
    width: 100px;
    height: 80px;
}

/* Style the form */
.complaint-form .form-group {
    margin-bottom: 15px;
}

.complaint-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.complaint-form input,
.complaint-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.complaint-form input:focus,
.complaint-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* New styles for the form button container */
.form-group.button-group {
    display: flex;
    justify-content: flex-end; /* Aligns the button to the right */
}

.submit-btn {
    background: rgb(67, 184, 45);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.submit-btn:hover {
    background: rgb(218, 218, 75);
}

/* Style the footer */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.footer p {
    color: #777;
}
