.womn-wrap {
    max-width: 900px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.womn-header {
    background: linear-gradient(135deg, #4884EE  0%, #06BCFB 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.womn-header h1 {
    color: #ffffff;
	margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
	line-height: 40px;
}

.womn-header p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    opacity: 0.95;
}

.womn-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.womn-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.womn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.womn-card h3 {
    margin: 0 0 20px 0;
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.womn-card h3::before {
    content: "✨";
    font-size: 1.4em;
}

.womn-card input[type="text"],
.womn-card input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.womn-card input[type="text"]:focus,
.womn-card input[type="password"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.womn-card .description {
    color: #718096;
    font-size: 0.95rem;
    margin-top: 8px;
}

.womn-statuses label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 15px;
    color: #4a5568;
}

.womn-statuses input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

.womn-footer {
    text-align: center;
    padding: 30px;
    color: #718096;
    font-size: 15px;
	margin-top: 50px;
    border-top: 1px solid #d7d7d7;
}

.womn-footer a {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
}

.womn-footer a:hover {
    color: #c53030;
}

/* Botón guardar más bonito */
#submit {
    background: linear-gradient(135deg, #4884EE  0%, #06BCFB 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
}

#submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}