.oncoensino-form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px 24px;
border-radius: 14px;
max-width: 670px;
margin: 36px auto;
}
.oncoensino-form-grid > .full { grid-column: 1 / -1; }
.oncoensino-form-grid select, .oncoensino-form-grid input {
width: 100%; padding: 12px 14px;
border: 1.5px solid #ddd; border-radius: 7px;
background: #fafbfc; font-size: 1rem;
outline: none; margin-bottom: 0;
box-sizing: border-box;
transition: border-color 0.2s;
}
.oncoensino-form-grid select:focus, .oncoensino-form-grid input:focus {
border-color: #1982FC;
background: #fff;
}
.oncoensino-form-grid label {
font-weight: 600; font-size: 0.95em;
margin-bottom: 6px; display: block;
}
.oncoensino-form-grid .oncoensino-termo label {
font-size: 0.99em; font-weight: 500; color: #444;
display: flex; align-items: flex-start;
gap: 7px; margin-top: 2px;
}
.oncoensino-form-grid button[type=submit] {
background: #1982FC; color: #fff; border: none;
border-radius: 6px; padding: 13px 0;
font-size: 1.05em; font-weight: 700;
cursor: pointer; box-shadow: 0 2px 7px #0002;
letter-spacing: .01em;
margin-top: 8px;
transition: background 0.19s;
}
.oncoensino-form-grid button[type=submit]:hover {
background: #1066bf;
}
@media (max-width: 700px) {
.oncoensino-form-grid { grid-template-columns: 1fr; padding: 16px; gap: 18px; }
.oncoensino-form-grid > .full { grid-column: 1; }
}
.select2-container .select2-selection--single {
width: 100% !important;
border: 1.5px solid #ddd !important;
border-radius: 7px !important;
background: #fafbfc !important;
font-size: 1rem !important;
padding: 10px 4px !important;
outline: none !important;
margin-bottom: 0 !important;
box-sizing: border-box !important;
transition: border-color 0.2s !important;
height: 50px !important;
color: #000 !important;
}
.select2-selection__arrow {
margin-top: 10px !important;
margin-right: 5px !important;
}
#oncoensino-erro-modal-bg {
position: fixed;
top:0; left:0; right:0; bottom:0;
background: rgba(0,0,0,0.6);
z-index: 9998;
display: flex;
align-items: center;
justify-content: center;
}
#oncoensino-erro-modal {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.oncoensino-erro-modal-content {
background: #fff;
padding: 32px 24px 18px 24px;
border-radius: 14px;
box-shadow: 0 0 40px 0 #0003;
text-align: center;
min-width: 280px;
max-width: 95vw;
position: relative;
z-index: 10000;
}
.oncoensino-erro-modal-content .oncoensino-fechar-modal {
margin-top: 18px;
background: #828282;
color: #fff;
border: none;
padding: 3px 6px;
border-radius: 8px;
cursor: pointer;
font-size: 0.8em; 
display: block;
position: absolute;
right: 10px;
top: -10px;
}
.oncoensino-erro-modal-content .oncoensino-erro-text {
font-weight: 600;
color: #4d4d4d;
font-size: 1em;
}
.oncoensino-erro-modal-content h3 {
font-weight: bold;
font-size: 20px;
color: #be2323;
border-bottom: 1px solid #ccc;
}