body {
    font-family: Arial, sans-serif;
    /* background-color: #f7f7f7; */
    color: #333;
    margin: 0;
    padding: 20px;
    margin: 10px;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* height: 100vh; */
    /* text-align: center; */
    overflow: hidden;
    /* prevent scroll */
}


.container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 400px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #666;
}

/* Style for the checkbox */
.checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.checkbox-container input {
    margin-right: 10px;
}

/* The Spinner (before the dialog shows up) */
.spinner {
    margin: 30px auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    animation: spin 1s linear infinite;
    display: none;
    /* Hidden by default */
}

/* Animation for the spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* The Modal (dialog box) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Black with opacity */
    padding-top: 60px;
}

.modal-dialog {
    max-width: 378px;
    left: -30%;
}

.modal-header {
    padding: 7px;
    border-bottom: 0;
}

.modal-header-inside {
    background-color: #5388db;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.verify-btn {
    background-color: #5388db;
    color: #fff;
}

.verify-btn:hover {
    color: #fff;
    background-color: #5388db;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.rc-content {
    display: flex;
}

.rc-anchor {
    width: 304px;
    height: 78px;
    display: flex;
}

.logo {
    width: 62px;
    height: 38px;
}

.rc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    width: 300px;
    border: 1px solid #d3d3d3;
    background: #f9f9f9;
    padding: 0px 10px;
}

.human-check {
    width: 30px;
    height: 30px;
}

.rc-anchor {
    border-radius: 3px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    -moz-box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
}

.checkbox-sector {
    display: flex;
    align-items: center;
}

.logo-sector {
    margin-top: 15px;
}

.rc-anchor-light .rc-anchor-logo-text,
.rc-anchor-light div a:link,
.rc-anchor-light div a:visited {
    color: #555;
}

.rc-anchor-pt a {
    text-decoration: none;
    color: #555;
    font-size: 9px;
}

.rc-anchor-pt a:hover {
    text-decoration: underline;
}

.rc-anchor-pt {
    margin-top: -7px;
}

.check-icon {
    display: none;
    color: #1b9249;
}

.material-icons {
    font-size: 42px;
}