/* Center the form on all devices */
.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Style the form */
form {
    margin-top: 20px;
    max-width: 600px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}


textarea.form-control {
    resize: vertical;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.success-msg {
    margin-top: 20px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    font-size: 16px;
}

/* Media queries for smaller screens */
@media screen and (max-width: 767px) {
    .form-control {
        font-size: 14px;
        padding: 6px;
    }

    .btn {
        font-size: 14px;
        padding: 8px;
    }

    .success-msg {
        font-size: 14px;
    }
}

@media screen and (max-width: 479px) {
    .form-control {
        font-size: 12px;
        padding: 4px;
    }

    .btn {
        font-size: 12px;
        padding: 6px;
    }

    .success-msg {
        font-size: 12px;
    }
}
