<<<<<<< HEAD
/* ============================= */
/* 1. HEADER */
/* ============================= */
header {
    background: linear-gradient(to right, #9f339d, #ffe0ff);
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* ============================= */
/* 2. FORMULARIO */
/* ============================= */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 450px;
    margin: 100px auto;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #9f339d;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Estilos de los campos */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    outline: none;
}

/* Efecto de enfoque */
input:focus, select:focus, textarea:focus {
    border-color: #9f339d;
    box-shadow: 0px 0px 8px rgba(159, 51, 157, 0.3);
}

/* Estilo del botón */
.btn {
    width: 100%;
    background-color: #9f339d !important; /* Fuerza el color */
    color: white !important; /* Asegura que el texto sea visible */
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #7b157a !important;
}
/* Estilo del botón de regresar */
.btn-regresar {
    display: block;
    width: 200px;
    padding: 10px;
    font-size: 14px;
    background-color: #9f339d;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 20px auto;
}

.btn-regresar:hover {
    background-color: #7b157a;
}
/* Pie de página */
footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to right, #9f339d, #ffe0ff); /* Degradado */
    color: white;
    margin-top: 20px;
}
/* ============================= */
/* 3. RESPONSIVE DESIGN */
/* ============================= */
@media screen and (max-width: 768px) {
    .form-container {
        max-width: 90%;
        padding: 20px;
    }

    header {
        font-size: 1.5rem;
    }
}
=======
/* ============================= */
/* 1. HEADER */
/* ============================= */
header {
    background: linear-gradient(to right, #9f339d, #ffe0ff);
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* ============================= */
/* 2. FORMULARIO */
/* ============================= */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
    max-width: 450px;
    margin: 100px auto;
}

.form-container h2 {
    font-size: 1.8rem;
    color: #9f339d;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Estilos de los campos */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    outline: none;
}

/* Efecto de enfoque */
input:focus, select:focus, textarea:focus {
    border-color: #9f339d;
    box-shadow: 0px 0px 8px rgba(159, 51, 157, 0.3);
}

/* Estilo del botón */
.btn {
    width: 100%;
    background-color: #9f339d !important; /* Fuerza el color */
    color: white !important; /* Asegura que el texto sea visible */
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #7b157a !important;
}
/* Estilo del botón de regresar */
.btn-regresar {
    display: block;
    width: 200px;
    padding: 10px;
    font-size: 14px;
    background-color: #9f339d;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    margin: 20px auto;
}

.btn-regresar:hover {
    background-color: #7b157a;
}
/* Pie de página */
footer {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to right, #9f339d, #ffe0ff); /* Degradado */
    color: white;
    margin-top: 20px;
}
/* ============================= */
/* 3. RESPONSIVE DESIGN */
/* ============================= */
@media screen and (max-width: 768px) {
    .form-container {
        max-width: 90%;
        padding: 20px;
    }

    header {
        font-size: 1.5rem;
    }
}
>>>>>>> fad63823ea3cc11541a512fbdecc9a3bb6d3f9be
