/* Configuración general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos para el body */
body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #FFC9ED;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
   
}

/* Contenedor principal */
.container {
    width: 100%;
    padding: 4vw; /* Padding proporcional al ancho de la pantalla */
}

/* Títulos del formulario */
.container h1 {
    color: #FFC9ED;
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem); /* Tamaño dinámico según el ancho de la pantalla */
    margin-bottom: 2em;
}

/* Información del perfil */
.profile-info p {
    color: #FFC9ED;
    margin-bottom: 1.5em;
    font-size: clamp(1.2rem, 5vw, 1.5rem); /* Texto más grande en móviles */
    line-height: 1.6;
}

.profile-info strong {
    color: #ff9de2;
}

/* Imagen de perfil */
.profile-info img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1em 0;
    border: 2px solid #ff9de2;
}

/* Mensajes */
.mensaje-exito {
    background-color: #ff9de2;
    color: #000;
    padding: 1.5em;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2em;
    font-size: clamp(1rem, 4vw, 1.2rem); /* Texto más visible */
}

/* Etiquetas */
label {
    display: block;
    color: #ff9de2;
    margin-bottom: 1em;
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Más grande en móviles */
}

/* Campos de entrada */
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 1.2em; /* Más espacio interno */
    margin-bottom: 1.5em;
    border: 1px solid #ff9de2;
    border-radius: 30px;
    background-color: #000;
    color: #fff;
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Texto más grande */
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]::placeholder {
    color: #ff9de2;
    opacity: 0.7;
}

input[type="text"]:focus {
    border-color: #FFC9ED;
}

/* Botón de enviar */
button {
    width: 100%;
    padding: 1.5em;
    background-color: #ff9de2;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: clamp(1.5rem, 5vw, 2rem); /* Botón más grande */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #FFC9ED;
    color: #000;
}

/* Enlace para volver */
a {
    display: block;
    text-align: center;
    color: #FFC9ED;
    margin-top: 2em;
    font-size: clamp(1.2rem, 4vw, 1.5rem); /* Texto más visible */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9de2;
}
