body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(to right, rgb(20, 147, 220), rgb(17, 54, 71));
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    max-width: 150%;
    width: 1100px;
    color: white;
    text-align: center;
}

fieldset {
    border: 3px solid dodgerblue;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
}

legend {
    padding: 10px;
    background-color: dodgerblue;
    border-radius: 8px;
    font-size: 18px;
}

.inputBox {
    margin-bottom: 10px;
    text-align: left;
}

.inputUser {
    background: none;
    border: none;
    border-bottom: 2px solid white;
    outline: none;
    color: white;
    font-size: 14px;
    width: 100%;
    padding: 10px 5px;
}

.inputUser:focus {
    border-color: dodgerblue;
}


.peso {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
     width: 50%;
     margin-left: 8px;
     
    
}
.editcar input {
    flex: 1;
}
.editcar a {
    margin-left: 15px;
}








.editcar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    
}
.editcar input {
    flex: 1;
}
.editcar a {
    margin-left: 10px;
}

.editcar span {
    font-weight: bold;
    color: white;
}

.editcar2 {
    width: 70%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.destino {
    padding: 10px;            
font-size: 14px;            
border: 2px solid white;            
border-radius: 5px;            
width: 60%;            
margin-left: 10px;            
margin-right: 10px; /* Adicionando margem à direita */
text-transform: uppercase; 
}

  .datac {
    width: 35%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    margin-bottom: 10px;
}


.capazul1 {            
padding: 10px;            
font-size: 14px;            
border: 2px solid white;            
border-radius: 5px;            
width: 15%;            
margin-left: 10px;            
margin-right: 10px; /* Adicionando margem à direita */
text-transform: uppercase;        
}


.btnsalvar, .btnsair {
    display: block;
    width: 15%;
    padding: 15px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    text-align: center;
    color: white;
    cursor: pointer;
}

.btnsalvar {
    background-color: #4CAF50;
    border: none;
    transition: background-color 0.3s ease;
}

.btnsalvar:hover {
    background-color: #45a049;
}

.btnsair {
    background-color: #f44336;
    border: none;
    transition: background-color 0.3s ease;
}

.btnsair:hover {
    background-color: #e60000;
}

/* Responsividade */
@media (max-width: 768px) {
    .box {
        padding: 20px;
        width: 100%;
    }

    .editcar2 {
        font-size: 14px;
    }

    .btnsalvar, .btnsair {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    legend {
        font-size: 16px;
    }

    .editcar {
        font-size: 16px;
    }
}
