:root {
    --colorRGB1: rgba(214,241,64,1);
    --colorRGB2: rgba(57,153,17,1);
    --color1: #d6f140;
    --color2: #399911;
    --bgSimulator: #ffffff;
    --borderColor: #E6E9ED;
    --fontColor: rgb(115, 135, 156);
    --bgAlert: #47C1A7;
    --colorAlert: #ffffff;
}
html, body {
    width: 100%;
    height: 100%;
}
.container-login {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.box-login {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-color: white;
}
.box-login h1 {
    text-align: center;
    font-size: 30px;
}
.container h1 {
    font-size: 30px;
}
.manager-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid gray;
    padding-bottom: 10px;
}
.manager-header h3 {
    font-size: 25px;
}
.container {
    padding-bottom: 30px;
    padding-top: 30px;
}
.card-form {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.error-404 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}
.content-container {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: auto;
    background: var(--colorRGB1);
    background: -moz-linear-gradient(45deg, var(--colorRGB1) 0%, var(--colorRGB2) 100%);
    background: -webkit-linear-gradient(45deg, var(--colorRGB1) 0%, var(--colorRGB2) 100%);
    background: linear-gradient(45deg, var(--colorRGB1) 0%, var(--colorRGB2) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d6f140",endColorstr="#399911",GradientType=1);
    color: var(--fontColor);
}
.box-simulator {
    width: 100%;
    background-color: var(--bgSimulator);
    padding: 20px;
}
.content-simulator {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--borderColor);
    margin-top: 10px;
}
.content-simulator:nth-child(1) {
    margin-top: 0;
}
.simulator-title {
    border-bottom: 2px solid var(--borderColor);
    margin-bottom: 20px;
}
.simulator-title h1,
.simulator-title h2 {
    font-size: 20px;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #dee2e6;
    height: 40px;
    border-radius: 5px;
}
.select2-container {
    width: 100% !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}
.simulator-form .col-md-4 {
    text-align: right;
}
.simulator-alert {
    width: 100%;
    border-radius: 20px;
    background-color: var(--bgAlert);
    color: var(--colorAlert);
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px 20px;
}
.hide {
    display: none;
}
@media screen and (max-width: 768px) {
    .simulator-form .col-md-4 {
        text-align: left;
    }
}