/* Existing CSS */
body {
    font-family: Arial, sans-serif;
    background-color: #cd6013; /* Changed to Cool Grey */
    color: red;
}

h1 {
    color: #333;
    text-align: center;
}
.brs{
    margin-top: 10px;
}

form {
    max-width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;

    /* align-items: center; */
    padding: 20px;
    background-color: #fff; /* Ensure the form background is white for contrast */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    justify-content: center;
    /* align-items: center; */
    
    display: block;

    margin-top: 10px;
    /* margin-bottom: 5px; */
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type="file"] {
    margin-top: 10px;
}

input[type="submit"] {
    background-color: #d19815;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #ac7e11;
}






















































