*{
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body{
    margin: 0;
    padding: 0;
    overflow: auto;
    margin: 0;
    align-items: center;
    width: 100%;
    height: 100%;
    background-image: url('img/setas.jpg');
    background-size: cover;
    color: #fff;
    
}

header{
    text-align: center;
    width: 100vw;
    margin: 30px;
}

main{
    padding: 30px;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

form{
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr; /* Duas colunas */
    gap: 10px; /* Espaçamento entre os elementos */
}

form input{
    border: none;
    background-color: #ffffff77;
    border-radius: 5px;
    color: #fff;
}

#formulario{
    margin-left: 30px;
}

#botoes{
    display: flex;
    justify-content: flex-end; /* Alinha os elementos à direita */
    margin-top: 10px;
    transform: translateX(204%);
}

.btn{
    margin-left: 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 5px;
}

.btn:hover{
    background-color: #52c9e9;
    color: #fff;
    font-weight: bold;
}

#os{
    background-color: transparent;
    color: #fff;
    line-height: 1.5;
    width: 70%;
    border: none;
}

#copiar{
    border-radius: 40%;
    color: #fff;
    border: none;
    padding: 5px;
    position: absolute;
    right: 0;
    top: 77%; 
    transform: translateY(-50%);
    margin-right: 150px;
    width: 30px;
    height: auto;
}

#copiar:hover{
    background-color: #15dad0;
    font-weight: bold;
    color: #fff;
    border: #fff;
}

footer{
    text-align: center;
    background-color: #ffffff3b;
    color: #fff;
    width: 100vw;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0;
}