/*=========================================
            NIKKI AI LOGIN
        Developed by HARSH VARDHAN
=========================================*/


.nikki-fullform{

margin-top:20px;

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:10px;

font-size:13px;

color:#d8e6ff;

letter-spacing:1px;

}

.nikki-fullform span{

color:#00bfff;

font-weight:700;

font-size:16px;

text-shadow:0 0 10px #00bfff;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:#050816;
color:#ffffff;

min-height:100vh;

overflow-x:hidden;

position:relative;

}

/*=========================================
            ANIMATED BACKGROUND
=========================================*/

.background{

position:fixed;

inset:0;

overflow:hidden;

z-index:-5;

background:

radial-gradient(circle at top left,#00bfff22,transparent 35%),

radial-gradient(circle at bottom right,#b400ff22,transparent 35%),

#050816;

}

.grid{

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(0,183,255,.08) 1px,transparent 1px),

linear-gradient(90deg,rgba(0,183,255,.08) 1px,transparent 1px);

background-size:50px 50px;

animation:gridMove 18s linear infinite;

opacity:.45;

}

@keyframes gridMove{

from{

transform:translateY(0);

}

to{

transform:translateY(50px);

}

}

/*=========================================
            GLOW EFFECT
=========================================*/

.glow{

position:absolute;

border-radius:50%;

filter:blur(120px);

animation:floatGlow 10s ease-in-out infinite;

}

.glow-blue{

width:350px;
height:350px;

background:#00bfff;

left:-120px;
top:-120px;

}

.glow-purple{

width:350px;
height:350px;

background:#8a2eff;

right:-120px;
bottom:-120px;

animation-delay:4s;

}

@keyframes floatGlow{

50%{

transform:translateY(40px) scale(1.1);

}

}

/*=========================================
            MAIN CONTAINER
=========================================*/

.container{

width:100%;

min-height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:30px;

gap:35px;

}

/*=========================================
            BRANDING
=========================================*/

.branding{

width:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

margin-top:20px;

}

.logo{

width:180px;

max-width:80%;

object-fit:contain;

filter:

drop-shadow(0 0 20px #00bfff)

drop-shadow(0 0 50px #8a2eff);

animation:logoPulse 3.5s ease-in-out infinite;

}

@keyframes logoPulse{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.06);

}

}

.branding h1{

margin-top:25px;

font-size:58px;

font-weight:800;

letter-spacing:10px;

color:#ffffff;

text-shadow:

0 0 20px #00bfff,

0 0 40px #8a2eff,

0 0 80px #8a2eff;

}

.tagline{

margin-top:18px;

font-size:18px;

line-height:1.9;

letter-spacing:8px;

font-weight:300;

color:#d9e8ff;

text-transform:uppercase;

}

/*=========================================
        MOBILE OPTIMIZATION
=========================================*/

@media(max-width:768px){

.logo{

width:160px;

}

.branding h1{

font-size:48px;

letter-spacing:8px;

}

.tagline{

font-size:16px;

letter-spacing:6px;

line-height:1.8;

}

}

/*=========================================
            LOGIN CARD
=========================================*/

.login-card{

width:100%;
max-width:430px;

padding:35px 28px;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(25px);
-webkit-backdrop-filter:blur(25px);

border-radius:28px;

box-shadow:

0 0 25px rgba(0,191,255,.20),

0 0 60px rgba(138,46,255,.12),

0 20px 50px rgba(0,0,0,.45);

position:relative;

overflow:hidden;

transition:.4s;

}

.login-card:hover{

transform:translateY(-6px);

box-shadow:

0 0 35px rgba(0,191,255,.35),

0 0 70px rgba(138,46,255,.25);

}

.login-card::before{

content:"";

position:absolute;

top:-120px;

left:-80px;

width:180px;

height:450px;

background:rgba(255,255,255,.08);

transform:rotate(25deg);

filter:blur(10px);

animation:shine 7s linear infinite;

}

@keyframes shine{

0%{

left:-220px;

}

100%{

left:520px;

}

}

.login-card h2{

font-size:34px;

font-weight:700;

text-align:center;

color:#ffffff;

margin-bottom:8px;

}

.login-card span{

display:block;

text-align:center;

color:#b8c7e8;

font-size:15px;

margin-bottom:30px;

letter-spacing:1px;

}

/*=========================================
            INPUT FIELDS
=========================================*/

.input-box{

position:relative;

width:100%;

margin:18px 0;

}

.input-box input{

width:100%;

height:60px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.15);

border-radius:16px;

outline:none;

padding:0 55px;

font-size:15px;

color:#ffffff;

transition:.35s;

}

.input-box input::placeholder{

color:#b8c7e8;

}

.input-box input:focus{

border-color:#00bfff;

background:rgba(255,255,255,.08);

box-shadow:

0 0 15px rgba(0,191,255,.35),

0 0 30px rgba(138,46,255,.15);

}

.input-box i:first-child{

position:absolute;

left:20px;

top:50%;

transform:translateY(-50%);

color:#00bfff;

font-size:17px;

}

.eye{

position:absolute;

right:20px;

top:50%;

transform:translateY(-50%);

cursor:pointer;

color:#b8c7e8;

transition:.3s;

}

.eye:hover{

color:#00bfff;

}

/*=========================================
            OPTIONS
=========================================*/

.options{

display:flex;

justify-content:space-between;

align-items:center;

margin:20px 0;

font-size:14px;

}

.options label{

display:flex;

align-items:center;

gap:8px;

color:#d8e5ff;

}

.options input{

accent-color:#00bfff;

}

.options a{

text-decoration:none;

color:#00bfff;

font-weight:600;

}

.options a:hover{

color:#ffffff;

}

/*=========================================
            LOGIN BUTTON
=========================================*/

.login-btn{

width:100%;

height:58px;

border:none;

border-radius:16px;

cursor:pointer;

font-size:16px;

font-weight:700;

letter-spacing:2px;

color:#fff;

background:linear-gradient(135deg,#00bfff,#7b2cff);

box-shadow:

0 0 25px rgba(0,191,255,.35);

transition:.35s;

}

.login-btn:hover{

transform:translateY(-3px);

box-shadow:

0 0 35px rgba(0,191,255,.55),

0 0 60px rgba(123,44,255,.25);

}

/*=========================================
          DIVIDER
=========================================*/

.divider{

display:flex;

align-items:center;

margin:28px 0;

color:#b8c7e8;

}

.divider::before,

.divider::after{

content:"";

flex:1;

height:1px;

background:rgba(255,255,255,.12);

}

.divider span{

margin:0 15px;

}

/*=========================================
          GOOGLE BUTTON
=========================================*/

.google-btn{

width:100%;

height:56px;

border-radius:16px;

border:1px solid rgba(255,255,255,.15);

background:rgba(255,255,255,.05);

color:#ffffff;

font-size:15px;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

gap:12px;

transition:.35s;

}

.google-btn:hover{

background:rgba(255,255,255,.10);

border-color:#00bfff;

}

.google-btn i{

color:#EA4335;

font-size:20px;

}

/*=========================================
          REGISTER
=========================================*/

.register{

text-align:center;

margin-top:25px;

color:#cbd7f4;

font-size:14px;

}

.register a{

color:#00bfff;

font-weight:700;

text-decoration:none;

}

.register a:hover{

color:#ffffff;

}

/*=========================================
            FOOTER
=========================================*/

footer{

text-align:center;

padding:18px;

font-size:13px;

color:#8ea6d6;

}

/*=========================================
        FINAL ANIMATIONS & EFFECTS
=========================================*/

/* Card Entry */

.login-card{

animation:cardEntry .9s ease;

}

@keyframes cardEntry{

0%{

opacity:0;

transform:translateY(50px) scale(.95);

}

100%{

opacity:1;

transform:translateY(0) scale(1);

}

}

/* Floating Branding */

.branding{

animation:floatBrand 6s ease-in-out infinite;

}

@keyframes floatBrand{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/* Animated Border */

.login-card::after{

content:"";

position:absolute;

inset:0;

border-radius:28px;

padding:1px;

background:linear-gradient(
135deg,
rgba(0,191,255,.6),
rgba(123,44,255,.5),
rgba(0,191,255,.6)
);

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

mask-composite:exclude;

pointer-events:none;

}

/* Smooth Buttons */

button{

transition:all .35s ease;

}

/* Mobile */

@media(max-width:768px){

.container{

padding:25px;

}

.login-card{

max-width:100%;

padding:28px 22px;

}

.branding h1{

font-size:42px;

}

.tagline{

font-size:14px;

letter-spacing:4px;

line-height:1.7;

}

.logo{

width:140px;

}

}

/* Desktop */

@media(min-width:992px){

.container{

flex-direction:row;

justify-content:space-evenly;

}

.branding{

text-align:left;

align-items:flex-start;

}

.login-card{

width:430px;

}

}

/* Selection */

::selection{

background:#00bfff;

color:#fff;

}

.copyright{

width:100%;

text-align:center;

padding:20px;

font-size:13px;

font-weight:500;

letter-spacing:1px;

color:#9db7ff;

text-shadow:0 0 8px rgba(0,191,255,.35);

border-top:1px solid rgba(255,255,255,.08);

background:rgba(255,255,255,.02);

backdrop-filter:blur(10px);

margin-top:40px;

}
/*=================================
        ABOUT PAGE
=================================*/

.about-container{

width:100%;

display:flex;

justify-content:center;

padding:60px 20px;

position:relative;

z-index:2;

}

.about-card{

width:100%;

max-width:1100px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.12);

border-radius:28px;

padding:45px;

box-shadow:

0 20px 60px rgba(0,0,0,.45),

0 0 35px rgba(108,99,255,.25);

animation:popup .8s ease;

}

.about-card h1{

text-align:center;

color:#fff;

font-size:42px;

margin-bottom:10px;

}

.about-subtitle{

text-align:center;

color:#00D4FF;

font-size:18px;

font-weight:600;

margin-bottom:45px;

letter-spacing:1px;

}

.about-section{

margin-bottom:45px;

}

.about-section h2{

color:#fff;

font-size:28px;

margin-bottom:18px;

display:flex;

align-items:center;

gap:12px;

}

.about-section h2 i{

color:#6C63FF;

}

.about-section p{

color:#d6d6d6;

font-size:16px;

line-height:1.9;

}
/*=================================
        FEATURE CARDS
=================================*/

.feature-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:25px;

}

.feature-card{

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.12);

border-radius:20px;

padding:30px;

text-align:center;

transition:.4s;

}

.feature-card:hover{

transform:translateY(-8px);

box-shadow:0 0 30px rgba(108,99,255,.35);

}

.feature-card i{

font-size:38px;

color:#00D4FF;

margin-bottom:18px;

}

.feature-card h3{

color:#fff;

margin-bottom:12px;

}

.feature-card p{

font-size:14px;

color:#d0d0d0;

line-height:1.7;

}

/*=================================
        CONTACT CARDS
=================================*/

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:22px;

margin-top:25px;

}

.contact-card{

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.12);

border-radius:18px;

padding:25px;

text-align:center;

transition:.4s;

}

.contact-card:hover{

transform:translateY(-6px);

box-shadow:0 0 25px rgba(0,212,255,.30);

}

.contact-card i{

font-size:34px;

color:#6C63FF;

margin-bottom:15px;

}

.contact-card h3{

color:#fff;

margin-bottom:10px;

}

.contact-card p{

color:#d6d6d6;

font-size:15px;

line-height:1.7;

}

/*=================================
        SOCIAL ICONS
=================================*/

.social-links{

display:flex;

justify-content:center;

gap:22px;

margin-top:30px;

flex-wrap:wrap;

}

.social-links a{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.12);

font-size:24px;

color:#fff;

text-decoration:none;

transition:.35s;

}

.social-links a:hover{

background:#6C63FF;

transform:translateY(-6px) scale(1.08);

box-shadow:0 0 25px rgba(108,99,255,.45);

}

/*=================================
        FOOTER
=================================*/

.about-footer{

text-align:center;

padding-top:40px;

border-top:1px solid rgba(255,255,255,.12);

margin-top:40px;

}

.footer-logo-img{

width:85px;

margin-bottom:15px;

}

.about-footer h2{

color:white;

margin-bottom:8px;

}

.footer-text{

color:#cfcfcf;

margin:18px 0;

line-height:1.8;

}

.footer-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

margin:25px 0;

}

.footer-btn{

padding:14px 28px;

border-radius:14px;

background:linear-gradient(135deg,#6C63FF,#00D4FF);

color:white;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.footer-btn:hover{

transform:translateY(-4px);

box-shadow:0 0 25px rgba(108,99,255,.45);

}

/*=================================
        RESPONSIVE
=================================*/

@media(max-width:768px){

.about-card{

padding:28px;

}

.about-card h1{

font-size:32px;

}

.about-section h2{

font-size:22px;

}

.feature-grid,

.contact-grid{

grid-template-columns:1fr;

}

.footer-buttons{

flex-direction:column;

align-items:center;

}

.footer-btn{

width:100%;

max-width:260px;

text-align:center;

}

}
.social-item{

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

}

.social-item span{

color:#ffffff;

font-size:14px;

font-weight:500;

text-align:center;

max-width:140px;

word-break:break-word;

}
/*=================================
      DEVELOPER PAGE
=================================*/

.developer-card{

display:flex;

align-items:center;

gap:35px;

margin-top:25px;

padding:30px;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.12);

border-radius:24px;

transition:.4s;

overflow:hidden;

}

.developer-card:hover{

transform:translateY(-8px);

box-shadow:

0 0 35px rgba(108,99,255,.35);

}

.developer-image{

flex-shrink:0;

}

.developer-image{

width:220px;

flex-shrink:0;

overflow:hidden;

border-radius:18px;

}

.developer-info{

flex:1;

}

.developer-info h3{

color:#fff;

font-size:30px;

margin-bottom:10px;

}

.role{

display:inline-block;

padding:8px 18px;

background:linear-gradient(135deg,#6C63FF,#00D4FF);

border-radius:30px;

color:white;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.developer-info p{

color:#d6d6d6;

font-size:15px;

line-height:1.9;

margin-top:15px;

}
/*=================================
      SOCIAL BUTTON
=================================*/

.social-btn{

display:inline-flex;

align-items:center;

gap:10px;

margin-top:22px;

padding:14px 22px;

background:linear-gradient(135deg,#6C63FF,#00D4FF);

border-radius:14px;

color:white;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.social-btn:hover{

transform:translateY(-4px);

box-shadow:

0 0 25px rgba(108,99,255,.45);

}

.social-btn i{

font-size:20px;

}

/*=================================
      RESPONSIVE
=================================*/

@media(max-width:768px){

.developer-card{

flex-direction:column;

text-align:center;

}

.developer-image img{

width:140px;

height:140px;

}

.developer-info h3{

font-size:24px;

}

.role{

font-size:13px;

}

.social-btn{

justify-content:center;

width:100%;

}

}
