.container {
    width: 40%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8); /* Blanco con transparencia */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(10px); /* Efecto de desenfoque para Safari */
}
@media screen and (min-width:800px) {
  .container {
    min-width: 560px;
  }
}

h1 {
    text-align: center;
  font-size: 4vw;
  font-weight: 200;
  background: linear-gradient(45deg, #ccb370, #646a82);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  h1{ font-size: 12vw;} }

.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.step {
    flex: 1 1 22%;
    min-width: 150px;
    margin-bottom: 10px;
}

.circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #ccb370;
    color: #FFFFFF;
    margin: 0 auto 10px;
    font-size: 14px;
}

#step2, #step4 {
    background-color: #646a82;
}

.step p {
    color: #1a1a1a;
    margin: 0;
    padding: 0 10px;
    font-size: 14px;
}

.div-form {
    width: 70%;
    margin: 0 auto;
}

form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: #1a1a1a;
    margin-bottom: 10px !important;
    font-weight: bold;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #28a745;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-group button:hover {
    background-color: #218838;
}

.info-text {
    width: 90%;
    margin: 0 auto;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Media query para dispositivos móviles */

@media (max-width: 800px) {
    .container {
        width: 90%;
        min-width: 0;
        margin: 20px auto;
        padding: 15px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        margin-bottom: 15px;
    }

    .circle {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 12px;
    }

    .step p {
        font-size: 1em;
    }

    .div-form {
        width: 100%;
    }

    .form-group label {
        font-size: 1em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1em;
        padding: 8px;
    }

    .form-group button {
        font-size: 1em;
        padding: 10px;
    }

    .info-text {
        font-size: 0.8em;
        width: 100%;
    }
}