/* Contenedor centrado y con sombra */
.wpmem_form {
    max-width: 420px;
    margin: 80px auto;
    padding: 30px 25px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Labels */
.wpmem_form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333333;
}

/* Inputs y textarea */
.wpmem_form input[type="text"],
.wpmem_form input[type="email"],
.wpmem_form input[type="password"],
.wpmem_form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #cccccc;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.wpmem_form input:focus,
.wpmem_form textarea:focus {
    border-color: #0d6efd;
    outline: none;
}

/* Botón de acceso / submit */
.wpmem_form button,
.wpmem_form input[type="submit"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background-color: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wpmem_form button:hover,
.wpmem_form input[type="submit"]:hover {
    background-color: #0b5ed7;
}

/* Mensajes de error */
.wpmem_form .wpmem_error {
    color: #d9534f;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Enlaces como "Olvidé mi contraseña" */
.wpmem_form a {
    color: #0d6efd;
    text-decoration: none;
}

.wpmem_form a:hover {
    text-decoration: underline;
}

/* Títulos */
.wpmem_form h2, .wpmem_form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Responsive */
@media screen and (max-width: 480px) {
    .wpmem_form {
        margin: 50px 15px;
        padding: 25px 15px;
    }
}
