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

body{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    position:relative;
}

/* Background Image */
.bg-image{
    position:absolute;
    width:100%;
    height:100%;
    background:url('https://images.unsplash.com/photo-1550547660-d9450f859349') no-repeat center center/cover;
    filter:blur(10px);
    transform:scale(1.1);
    animation:zoomBg 20s infinite alternate ease-in-out;
    z-index:-2;
}

/* Dark Overlay */
body::after{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:-1;
}

/* Background Zoom Animation */
@keyframes zoomBg{
    from{transform:scale(1.1);}
    to{transform:scale(1.2);}
}

/* Floating Burger */
.burger{
    position:absolute;
    width:250px;
    opacity:0.8;
    animation:float 5s ease-in-out infinite;
}

.burger:nth-child(2){
    top:10%;
    left:10%;
}

.burger:nth-child(3){
    bottom:15%;
    right:15%;
    animation-delay:2s;
}

@keyframes float{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-25px);}
}

/* Login Box */
.login-container{
    width:360px;
    padding:45px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(20px);
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,0.6);
    text-align:center;
    color:white;
    animation:fadeUp 1s ease forwards;
}

/* Form Entry Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.login-container h2{
    margin-bottom:30px;
    font-size:26px;
      font-family: 'Pacifico', cursive;
}

/* Input */
.input-box{
    margin-bottom:25px;
}

.input-box input{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,0.25);
    color:white;
    font-size:14px;
    outline:none;
    transition:0.4s;
}

.input-box input::placeholder{
    color:#eee;
}

.input-box input:focus{
    background:rgba(255,255,255,0.35);
    box-shadow:0 0 15px rgba(255,106,0,0.6);
    transform:scale(1.05);
}

/* Button */
.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#ff6a00,#ffb347);
    color:white;
    font-weight:bold;
    cursor:pointer;
    transition:0.4s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(255,106,0,0.6);
}

/* Register link */
.register-link{
    margin-top:18px;
    font-size:14px;
}

.register-link a{
    color:#ffb347;
    text-decoration:none;
    font-weight:bold;
}
