body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-size: 1.2rem;               /* ← escala base */
}

form {
    background: #fff;
    padding: 2.4rem;                  /* +20 % */
    border-radius: 10px;              /* un poco más redondeado */
    box-shadow: 0 2px 6px #0002;
    width: 90%;
    max-width: 600px;                 /* un poco más ancho */
}

/* Campo de texto: ancho completo */
input[type="text"][name="nombre_apellido"] {
    width: 100%;
    box-sizing: border-box;
    margin: .6rem 0;                  /* +20 % */
    padding: .6rem;                   /* +20 % */
    border: 1px solid #ccc;
    border-radius: 5px;               /* +25 % */
    font-size: 1.1rem;                /* texto más grande */
}

/* Resto de los inputs de archivo */
input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    margin: .6rem 0;
    padding: .6rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.1rem;
}

button {
    padding: .85rem 1.8rem;           /* +20 % */
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1.1rem;                /* texto del botón más grande */
}

/* -------------------------------------------------
   Página de confirmación
   ------------------------------------------------- */
.msg.success {
    text-align: center;
    background: #fff;
    padding: 3.6rem 2.4rem;           /* +20 % */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    max-width: 480px;                 /* +20 % */
    margin: 2.4rem auto;               /* +20 % */
}

.msg .icon {
    width: 58px;                      /* +20 % */
    height: 58px;
    color: #28a745;
    margin-bottom: 1.2rem;            /* +20 % */
}

.msg h2 {
    color: #333;
    margin-bottom: .6rem;
    font-size: 1.8rem;                /* +20 % */
}

.msg p {
    color: #666;
    margin-bottom: 2.4rem;            /* +20 % */
    font-size: 1.3rem;                /* +20 % */
}

.btn-primary {
    display: inline-block;
    padding: 1rem 1.9rem;             /* +20 % */
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background .2s;
    font-size: 1.2rem;                /* texto del enlace más grande */
}

.btn-primary:hover {
    background: #218838;
}