.btn-buy {
    display: block;
    background-color: rgb(0, 132, 255);
    border: none;
    padding: 1rem;
    border-radius: 2rem;
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    font-size: 1.2rem;
    text-decoration: none;
}

/* uso del hover con el boton */
.btn-buy:hover {
    transition: 0.5s;
    box-shadow: 0 10px 20px var(--accent);
    transform: translateY(-10px);
}

.btn {
    text-align: center;
    align-items: center;
    margin-top: 20px;
}

.select select {
    width: 100%;
    background: transparent;
    border: 0.5px solid rgb(77, 75, 75);
    border-radius: 22px;
    padding: 12px;
    margin-bottom: 10px;
    color: #fff; /*añadir style a las opciones a escoger con select*/
}

select option {
    background: #08111B;
    color: white;
}

label { /*añadir column para que el label esté encima del input*/
    font-size: 0.8rem;
    color: #ced9e4;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; 
}

input{ /*editar el input añadiendo estilos y para que ocupe todo el tamaño del div*/
    border: 0.5px solid rgb(77, 75, 75);
    border-radius: 22px;
    background: transparent;
    color: #fff;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;   
}

.card { /*Style a la card jugando con grid y editando el espacio asignado a la card*/
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-2px);
}