form {
    width: 80%;
    /* You can adjust this value as per your requirements */
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: 25px;
}

form div {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    margin-bottom: 10px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.2s;
}

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

textarea {
    resize: vertical;
}

input[type="submit"] {
    cursor: pointer;
    background: #4a98f7;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.2s;
}

input[type="submit"]:hover {
    background: #3167b3;
}