.modal input, .modal textarea, .modal button {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.modal input[readonly] {
    background-color: #f7f7f7; /* Looks like other fields but not editable */
    color: #300D67;
}

.modal button {
    background-color: #300D67;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.modal button:hover {
    background-color: #f9520b;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    margin: 100px auto;
    position: relative;
}

.modal .close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}