
body {
    font-family: arial,sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(0,0,0,0,1);
    box-sizing: border-box;
}

h2, h3 {
    text-align: center;
    color: #333;
}

label {
    display: block;
    margin-top: 15px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 8px 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.terms-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.logo {
    display: block;
    margin: 0 auto 20px auto;
    max-width: 150px;
}

.submit-wrapper {
    text-align: center;
    margin-top: 20px;
}

.terms-container {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-size: 14px;
}

.submit-wrapper {
    text-align: center;
    margin-top: 25px;
}

.submit-btn {
    padding: 12px 24px;
    background-color: #18bc9c;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #149174;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px #333;
    max-height: 80vh;
    overflow-y: auto;  
    box-sizing: border-box;
}

.modal-content h3, .modal-content h4 {
    margin-top: 0;
}

.disclaimer-title {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

p {
    text-align: justify;
    text-indent: 30px;
    line-height: 1.6;
}

.terms-list {
    padding-left: 20px;
}

.terms-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .modal-content {
        margin: 20px auto;
        padding: 15px;
        width: 95%;
        max-height: 80vh;
    }
}



