.step-1 {
    display: grid;
    align-items: center;
    width: 100%;
    height: 100%;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    column-gap: 5%;
    row-gap: 20px; 
}
.user-data {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.user-data p {
    font-weight: bold;
    font-size: 0.9em;
    text-align: left;
}
.form {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    row-gap: 5px;
    height: 100%;
    justify-items: end; 
}
.form input {
    display: flex;
    align-items: center;
    height: 60%;
    width: 85%;
    font-size: 1em;
    background-color: #f7f7f8;
    border-color: transparent;
    padding-top: 10px;
    padding-left: 15px;
}
.donation {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    row-gap: 20px;
    height: 100%;
}
.donation p {
    font-weight: bold;
    font-size: 0.9em;
}
.donation fieldset {
    padding-left: 0px;
    border-left-width: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 35%;
    border-color: transparent;
}
.donation legend {
    height: 50%;
    font-size: 1.3em;
}
.donation input {
    width: 4.5%;
    border-color: transparent;
    background-color: #f7f7f8;
    padding-left: 15px;
}
.causas {
    display: grid;
    grid-template-rows: 1fr 1fr .5fr;
    row-gap: 5px;
    height: 100%;
}
.causas-opciones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.causa-especifica {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.causa-amparo, .causa-roberto {
    display: flex;
    margin-bottom: 15px;
    height: 60%;
}
.causa-amparo:hover label, .causa-roberto:hover label{
    background-color: black;
    color: white;
    cursor: pointer;
}
.causa-amparo label {
    display: flex;
    align-items: center;
    width: 70%;
    padding: 5px 20px;
    margin-left: 15px;
    background-color: #99cc66;
    color: white;
    font-size: 1.35em;
    border-radius: 3px;
    transition: all .3s ease-out;
}
.causa-amparo input, .causa-roberto input {
    
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  border: 2.5px solid #000000;
  position: relative;
  cursor: pointer;
}
.causa-amparo input:checked, .causa-roberto input:checked {
  background-color: white;
  border-color: black;
}

.causa-amparo input:checked::after, .causa-roberto input:checked::after {
  content: '✔';
  -webkit-text-stroke: 2px white;
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  color: black;
  font-size: 45px;
}
.causa-roberto label {
    display: flex;
    align-items: center;
    font-size: 1.35em;
    width: 70%;
    padding: 5px 20px;
    margin-left: 15px;
    background-color: #fc6800;
    color: white;
    border-radius: 3px;
    transition: all .3s ease-out;
}
#proyecto_especifico {
    align-self: center;
    font-size: 1.5em;
    width: 95%;
    height: 15%;
}
.next-step {
    cursor: pointer;
    display: flex;
    align-items: center;
    align-self: center;
    padding-left: .8em;
    margin-top: 10px;
    background-color: #3a3a3a;
    font-size: 1.3em;
    color: white;
    font-weight: bolder;
    height: 10%;
    width: 75%;
}
@media (max-width: 965px) {
    .form {
        justify-items: left;
    }
    .form input{
        font-size: 1.1em;
    }
    .donation{
        height: max-content;
    }
    .donation p{
        margin: 0;
    }
    .causa-amparo label, .causa-roberto label {
        font-size: 0.9em;
    }
    .next-step{
        font-size: 1em;
        justify-content: center;
        width: 65%;
        height: 50px;
    }
    #proyecto_especifico{
        font-size: 1.1em;
        height: 60px;
    }
}