@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #c5c5ad;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

#container {
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background-color: transparent;
    border-radius: 10px;
}

img.logo {
    width: 190px;
    height: auto;
    position: absolute;
    top: 40px;
    left: 40px;
}

.question {
    display: none;
    position: center;
}

.question.active {
    display: block;
    position: absolute;
    top: 30%;
    width: 50%;
    text-align: center;
    font-size: 30px;
}

.custom-radio {
    display: inline-block;
    width: 18px;
    height: 18px;
    /* line-height: 40px; */
    text-align: center;
    /* margin: 5px; */
    cursor: pointer;
    /* border-radius: 50%; */
    /* border: 2px solid #000; */
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.custom-radio-label {
    display: inline-block;
    margin-left: 0px;
    cursor: pointer;
    font-size: 24px;
}

.custom-radio:checked+.custom-radio-label {
    color: #333333;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    margin-bottom: 20px;
}

table td {
    background-color: #ffffff76;
    border: 2px solid #3f3f3f;
    border-radius: 20px;
    padding: 2px;
    cursor: pointer;
}
table td.tdhover:hover {
    background-color: #3f3f3f38;
    /* border: 2px solid #3f3f3f; */

}

.small-table {
    width: 25%;
    margin: 0 auto;
}

.transparent-table td {
    background-color: transparent;
    border: 2px solid #000;
    text-align: left;
}

textarea {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #616161;
    padding: 10px;
}

button {
    font-family: 'Montserrat', sans-serif;
    background-color: #444444;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
}

textarea::placeholder {
    color: #999;
}

textarea:focus {
    border-color: #ffffff78;
    outline: none;
}

textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #616161;
    padding: 10px;
    background-color: rgba(24, 23, 23, 0);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.msgerror {
    margin-top: 20px;
    font-size: 18px;
    color: #d81111;
}
.td_info {
    background-color: transparent;
    border: 0;
    font-size: 14px;
}
.txt_left {
    text-align: left;
}
.txt_right {
    text-align: right;
}
.txt_center {
    text-align:center !important;
}