@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", serif;
    background: #000000;
    scrollbar-width: none;
}

#simulator{
    width: 100%;
    max-width: 1300px;
    padding: 50px 60px;
    border: 1px solid #dde0e8;
    margin: 100px auto;
    box-shadow: 0 0 3em #dfdfdf;
}

h1{
    font-size: 34px;
    font-weight: 700;
    color: #fcfcfc;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 2px solid #7a93ab;
}

.cont-flex{
    width: 100%;
    display: flex;
}

.left,
.right{
    width: 50%;
    padding: 40px 20px;
}

h2{
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 14px;
}

.left p{
    margin-bottom: 30px;
    color: #f7f7f7;
}

form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 6px;
}

.group-data.two-columns{
    width: 50%;
    box-sizing: border-box;
}
.group-data.one-column{
    width: 100%;
}

.group-data.three-columns{
    width: 60%;
}

.group-data.four-columns{
    width: 40%;
}

.group-data{
    padding-right: 16px;
}
.group-data label{ 
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
}
.group-data input,
.group-data select{
    display: block;
    margin-bottom: 30px;
    width: 100%;
} 

form button{
    display: block;
    width: 97%;
    padding: 14px 80px;
    background: #d7dbdf;
    color: #443f3f;
    border: 1px solid #49d6e0;
    transition: .4s;
    cursor: pointer;
    border-radius: 6px;
}

form button:hover{
    background: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
}

input, select{
    padding: 14px 30px;
    background: #d7dbdf;
    border: 0;
    border-bottom: 2px solid #7a93ab;
    outline: none;
}
input::placeholder {
    color: #000000; 
}

.right .pre-simulation{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right img{
    max-width: 80%;
}

.right .post-simulation {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    padding: 0 60px;
}

.post-simulation.disabled,
.pre-simulation.disabled {
    display: none;
}

.right .post-simulation h3{
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;
}

.right .post-simulation h3 span{
    color: #df6b6b;
    font-weight: 600;
    font-size: 24px;
}

.right .total{
    background: #ffffff;
    padding: 20px;
}

.right .total h4{
    font-size: 28px;
    color: #e6e6e6;
}

.right .total h2{
    font-size: 36px;
    padding: 14px 0;
}

.total p{
    font-weight: 400;
    color: #f7f7f7;
}

.total p span{
    font-weight: 600;
}

.notificacion{
    padding: 20px;
    border: 1px solid #ffffff;
    margin-top: 40px;
}

.notificacion h5{
    font-weight: 400;
    color: #f7f7f7;
}

.notificacion h5 span{
    font-weight: 700;
}
select {
    background-color: #d7dbdf;  
    color: #333;            
    font-size: 14px;
    width: 100%;
    appearance: none;         
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

select option {
    background: #d7dbdf;  
    color: #333;      
}
footer {          
    color: #eee;              
    text-align: center;        
    padding: 20px 10px;       
    margin-top: 40px;         
    font-family: Arial, sans-serif;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: #aaa;             
}

footer a {
    color: #4cafef;           
    text-decoration: none;     
    transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
    color: #00ffcc;           
    transform: scale(1.1);    
}

