        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap');
            *{
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Popins', sans-serif;
            }
    
            .body {
                width: 100%;
                height: 100vh;
                display: center;
                justify-content: center;
                align-items: center;
            }
            
            #container {
                text-align: center;
                margin-left: 4rem;
            }
    
            .form {
                width: 80%;
                height: 45vh;
                display: flex;
                box-shadow: 5px 5px 10px rgba(0, 0, 0, .212);
                justify-content: center;
                align-items: center;
            }
            
            .form-header {
                margin-bottom: 1rem;
                justify-content: space-between;
            }
            
            .form-header h1::after {
                content: '';
                display: block;
                width: 7rem;
                height: 0.3rem;
                background-color: #6c63ff;
                margin: 0 auto;
                position: absolute;
                border-radius: 10 px;
            }
            
            .title {
                padding: .1rem 1rem;
            }
            
            .input-group {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 1rem 0;
            }
            
            .option-group {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 10 1.8rem;
            }
            
            .input-group input {
                font-size: 18px;
                margin: -0.2rem 0;
                padding: .5rem .1rem;

                border-radius: 5px;
                box-shadow: 1px 1px 6px #0000001c;
    
            }
            
            .option-group select {
                font-size: 18px;
                background: transparent;
                border: none;
                border-radius: 5px;
                box-shadow: 01px 1px 6px #0000001c;
                background-color: #eeeeee75;
                height: 35px;
                text-indent: 30px;
                -webkit-appearance: none;
            }
            
            .input-group input:hover {
                background-color: #eeeeee75;
            }
            
            input[type=number]::-webkit-inner-spin-button { 
                -webkit-appearance: none;                   
            }
            
            #description{
                padding: 1rem;
                color: rgb(134, 134, 134);
            }
            
            .igual{
                padding-bottom: 0.5rem;
            }
        
        @media screen and (max-width:360px){
            .form{
                padding: 0.5rem;
                width: 100%;
                height: 50vh;
            }
            
            #container{
                margin-left: 0rem;
                text-align: left;
                width: 130%;
            }
        }
        
        @media screen and (max-width:475px){
            .form{
                padding: 0.1rem;
                width: 110%;
                height: 50vh;
            }
            
            #container{
                margin-left: 0.1rem;
                text-align: left;
                width: 110%;
            }
        }
        
        @media screen and (max-width:640px){
            .form{
                padding: 0.5rem;
                width: 100%;
                height: 50vh;
            }
            
            #container{
                margin-left: 0rem;
                text-align: left;
                width: 100%;
            }
        }
        
        @media screen and (max-width:1024px){
            .igual{
                display: none;
            }
        }