*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
    
    background: linear-gradient(to bottom,rgb(111, 201, 231),rgb(250, 164, 178));
    
}
.contenedor{
    border: 3px solid rgb(255, 183, 183);
    background-color: rgb(219, 200, 200);
    padding: 2rem;
    border-radius: 10px;
    width:500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    position: relative;
}
h1{
    text-align: center;
    margin-bottom: 1em;
    color: rgb(105, 16, 16);

}
form{
    
    display: grid;
    gap: 4em;
}
.campos{
    display: grid;
    gap: 1em;
}
label{
    display: block;
    font-weight: bold;
    margin-bottom: 0.4em;
}
input[type="number"]{
    width: 50%;
    padding: 0.5em;
    border-radius: 10px;
    border: 2px solid rgb(28, 31, 28);

}
input[readonly]{
    background-color:pink ;
    
    
}
.botones{
  display: flex;
  justify-content: space-between;
}
.boton{
    padding: 0.5em;
    border: none;
    font-size: 1.1rem;
    font-weight: bolder;
    background-color: pink;
    border-radius: 10px;
    transition: all 0.3s ease;
    
    &:hover{
        transform: scale(1.10);
        cursor: pointer;
    }
}
img{
    height: 45%;
    position: absolute;
    right: 1px;
    top: 170px;
    
}
