body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.modal {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.500);
}

.modal.agree {
    display: none;
}


.modal-container {
    height: calc(182px + 250px);
    width: 650px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-container-head {
    display: flex;
    justify-content: start;
    align-items: center;
    height: 50px;
    width: 100%;
    background-color: #ee2e24;
    border-radius: 5px 5px 0 0;
}

.modal-container-head p {
    color: white;
    padding: 0 40px !important;
    margin-bottom: 0 !important;
}

.modal-container-content {
    overflow-y: auto;
    height: calc(182px + 150px);
    width: 100%;
}

.modal-container-content div { 
    text-align: justify;
    margin: 20px 40px 20px !important;
    height: 100%;
}

.modal-container-footer {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 50px;
    width: 100%;
    border-top: 0.067px solid rgba(0, 0, 0, 0.50);
}

.modal-container-footer button {
    border: none;
    background-color: #ee2e24;
    color: white;
    padding: 10px 30px !important;
    margin-right: 20px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modal-container-footer button:hover {
    background-color: #ee2e24;
}