*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    background: linear-gradient(to bottom,black, rgb(87, 253, 10), white, rgb(87, 253, 10), black);
    
}
.contenedor{
    background-color: black;
    padding: 2em;
    border-radius: 20px;
    width: 80%;
    box-shadow: 0 8px 20px;
    color: white;
    position: relative;
    
}
h1{
    -webkit-text-stroke: 1px Lime;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bolder;
}
form{
    display: grid;
    gap: 2em;
}
.campos{
    
    display: grid;
    gap: 1em;
}
label{
    display: block;
    font-weight: bolder;
    margin-bottom: 0.4em;
}
input[type="number"]{
    width: 40%;
    padding: 0.7em;
    border-radius: 10px;
    border: 3px solid lime;
    padding: 15px;
}
input[readonly]{
    background-color: rgba(79, 233, 79, 0.911);
}
.botones{
    text-align: center;
    margin: 20px;
    gap: 20p;

}
.boton{
    font-size: 1.4rem;
    border-radius: 10px;
    padding: 5px;
    border: none;
    border: 3px solid lime;
    transition: 0.5s;
    margin: 10px;
    padding: 12px;
    &:hover{
        transform: scale(1.2);
    }
}
label{
    font-size: 1.5rem;
}

.img{
    position: absolute;
    width: 400px;
    right: 6%;
    top: 25%;
    mix-blend-mode: color white;
    filter: invert(66%) sepia(91%) saturate(400%) hue-rotate(61deg) brightness(104%)
}
::placeholder{
    
    font-size: 1.2rem;
    color: black;
}
input {
  font-size: 18px;
  padding: 10px;
  font-weight: bolder;
  font-size: 1.2rem;
  color: black;
}
.imgContenedor{
    width: fit-content;
}
