.form {
    width: 100%;
    height: auto;
    display: grid;
    justify-content: center;
    box-shadow: 5px 5px 20px 5px rgba(0,0,0,0.05);
}

.label {
    width: 100%;
    height: auto;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    font-family:'Gill Sans';
}

.input-group {
    width: 500px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.button-group {
    width: 500px;
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:20px;
}

.input {
    width: 100%;
    height: 40px;
    padding-left: 10px;
    margin-bottom: 20px;
    outline: none;
    border: none;
    border-radius: 5px;
    border-bottom: 2px solid var(--primary-color);
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.texto-mayusculas {
    text-transform: uppercase;
}

.div-footer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}