/* heartlink-dark.css */
body { 
    background: #0f0a1f; 
    color: #ffffff; 
    font-family: 'Poppins', sans-serif; 
}
:root {
    --primary-pink: #ff2d95;
    --purple: #c026d3;
}
.hero { 
    background: linear-gradient(135deg, #ff1493, #8b00ff); 
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.neon-pink { 
    color: #ff69b4; 
    text-shadow: 0 0 25px #ff1493; 
}
.glass { 
    background: rgba(255,255,255,0.1); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255,105,180,0.3); 
}
.card { 
    background: rgba(255,255,255,0.12); 
    border: none; 
    border-radius: 20px; 
    transition: all 0.3s; 
}
.card:hover { 
    transform: translateY(-15px); 
    box-shadow: 0 0 30px rgba(255,105,180,0.5); 
}
.btn-neon { 
    background: transparent; 
    border: 2px solid #ff69b4; 
    color: #ff69b4; 
    border-radius: 50px; 
    padding: 14px 40px; 
    font-weight: 600;
}
.btn-neon:hover { 
    background: #ff69b4; 
    color: white; 
    box-shadow: 0 0 30px #ff1493; 
}
.section-title { 
    color: #ff69b4; 
    text-shadow: 0 0 20px #ff1493; 
}
.form-control {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: 1px solid #ff69b4;
}
.form-control::placeholder {
    color: #cccccc !important;
}
.login-section {
    min-height: 100vh;
    background: #0a0714;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Rest same as before (bokeh + hearts) */
.login-section::before, .login-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float 25s infinite linear;
}
.login-section::before {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.15) 0%, transparent 70%);
    top: -10%; left: -10%;
}
.login-section::after {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    bottom: -20%; right: -15%;
    animation-direction: reverse;
}
.hearts-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none; overflow: hidden; z-index: 1;
}
.hearts-bg i {
    position: absolute; color: rgba(255,105,180,0.25);
    font-size: 18px; animation: floatHeart linear infinite;
    text-shadow: 0 0 10px #ff69b4;
}
@keyframes floatHeart {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}
.login-card {
    background: rgba(15,10,31,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,105,180,0.3);
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(255,20,147,0.4);
    max-width: 460px; width: 100%;
    padding: 40px 30px; position: relative; z-index: 2;
}
.logo-gradient { font-size: 2.8rem; font-weight: 700;
    background: linear-gradient(90deg, #ff1493, #8a2be2);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.btn-login {
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    border: none; border-radius: 50px; padding: 14px 0;
    font-weight: 600; letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(255,20,147,0.6);
}
.btn-login:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(255,20,147,0.9); }
.form-control {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,105,180,0.4);
    color: white; height: 55px;
}
.input-group-text { background: transparent; border: 1px solid rgba(255,105,180,0.4); color: #ff69b4; }
.btn-social {
    height: 55px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
}
.btn-google {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}
.btn-apple {
    background: #000;
    color: white;
    border: 1px solid #333;
}
.or-divider {
    position: relative;
    text-align: center;
    margin: 25px 0;
    color: #666;
}
.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
}
.or-divider span {
    background: rgba(15,10,31,0.92);
    padding: 0 20px;
}
footer { background: #0a0614; }