﻿.form-container {
    width: 100%;
    text-align: center;
}

.centralized-form {
    display: inline-block;
    text-align: left;
    width: 50%;
    background-color: #f2f2f2;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .centralized-form label {
        display: block;
        margin-bottom: 10px;
    }

    .centralized-form input, .centralized-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    .centralized-form button[type="submit"] {
        background-color: #007bff;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

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


@media only screen and (max-width: 768px) {
    .centralized-form {
        width: 100%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .centralized-form {
        width: 75%;
    }
}