/* --- Estilos del Formulario Moderno --- */
.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.modern-form {
    background: #ffffff;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 4px solid black;
    box-shadow: 12px 12px 0px #6225e6;
}

.modern-form h1 {
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #6225e6;
}

.modern-form p {
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    background: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    transition: 0.3s;
    font-weight: 600;
}

.input-group textarea ~ label {
    top: 20px;
}

/* Efecto Etiqueta Flotante */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 8px;
    font-size: 12px;
    background: white;
    padding: 0 5px;
    color: #6225e6;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #6225e6;
    box-shadow: 4px 4px 0px rgba(98, 37, 230, 0.2);
}

.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* --- Tu Botón CTA (Incluido) --- */
.cta {
    display: flex;
    padding: 11px 33px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    background: #6225e6;
    transition: 1s;
    box-shadow: 6px 6px 0 black;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
}

.cta:focus { outline: none; }

.cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
    transition: 0.5s;
    margin-right: 0px;
}

.cta:hover .second {
    transition: 0.5s;
    margin-right: 45px;
}

.span { transform: skewX(15deg); display: inline-block; }

.second {
    width: 20px;
    margin-left: 30px;
    position: relative;
    top: 1px;
}

.one { transition: 0.4s; transform: translateX(-60%); }
.two { transition: 0.5s; transform: translateX(-30%); }

.cta:hover .three { animation: color_anim 1s infinite 0.2s; }
.cta:hover .one { transform: translateX(0%); animation: color_anim 1s infinite 0.6s; }
.cta:hover .two { transform: translateX(0%); animation: color_anim 1s infinite 0.4s; }

@keyframes color_anim {
    0% { fill: white; }
    50% { fill: #fbc638; }
    100% { fill: white; }
}