/* admin.css - Estilo Premium TuEmpresaCV */

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

body {
    /* FONDO NOTEBOOK: He puesto una imagen de respaldo por si la tuya no carga */
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('../img/fondo.jpg'), 
                url('https://images.unsplash.com/photo-1496181133206-80ce9b88a853?q=80&w=2071') no-repeat center center fixed;
    background-size: cover;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.title-premium {
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.subtitle-premium {
    color: rgba(255, 255, 255, 0.7);
}

.label-premium {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.input-premium {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    color: white !important;
    width: 100%;
    transition: 0.3s;
}

.input-premium:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #3b82f6 !important;
    outline: none;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.group-text-glass {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 12px 0 0 12px !important;
    padding: 0 15px;
}

.btn-premium {
    background: #3b82f6;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 18px;
    width: 100%;
    border-radius: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    transition: 0.3s;
}

.img-container img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #3b82f6;
    background: rgba(255, 255, 255, 0.05);
}

.border-end-glass {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}














:root {
    --nexu-cyan: #00d2ff;
    --nexu-dark: #0f172a;
    --nexu-glass: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--nexu-dark);
    font-family: 'Inter', sans-serif;
    color: white;
}

.main-overlay {
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.1), transparent),
                radial-gradient(circle at bottom left, rgba(167, 139, 250, 0.1), transparent);
    min-height: 100vh;
}

/* Estilo Logo */
.logo-text {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #FFFFFF 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.title-premium {
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, var(--nexu-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.label-premium {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nexu-cyan);
    margin-bottom: 8px;
    display: block;
}

.input-premium {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    transition: 0.3s;
}

.input-premium:focus {
    outline: none;
    border-color: var(--nexu-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.group-text-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 12px;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 12px 0 0 12px;
}

.img-container {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px dashed var(--nexu-cyan);
    padding: 5px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.btn-premium-action {
    background: var(--nexu-cyan);
    color: var(--nexu-dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-premium-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
    background: #00b8e6;
}

.btn-glass-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
}