*{
    box-sizing: border-box;
    margin: 0%;
    padding:0%;
}
body{
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family: 'Segoe UI', sans-serif;
}

/* Glass Card */
.glass{
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    backdrop-filter: blur(12px);
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.2);
    color:#f4f1f1;
    width:min(90%,600px);
    height: min(90vh,700px);
    margin: auto;
 
    /* Animation */
  opacity:0;
  transform: translateY(40px) scale(0.95);
  animation: cardEnter 1.2s ease forwards;
}

/* Keyframes */
@keyframes cardEnter{
  to{
    opacity:1;
    transform: translateY(0) scale(1);
  }
}


/* Inputs */
.form-control{
    border-radius:12px;
    background: rgba(255,255,255,0.15);
    border:none;
    color:rgb(34, 22, 22);
}

.form-control:focus{
    box-shadow:0 0 8px #00eaff;
    background: rgba(219, 221, 209, 0.932);
    color:white;
}

/* Icons */
.input-group-text{
    background: rgba(14, 21, 121, 0.906);
    border:none;
    color:rgb(231, 227, 225);
}

/* Button */
.btn-modern{
    background: linear-gradient(90deg,#ff6600,#ff9100);
    border:none;
    border-radius:30px;
    padding:10px 50px;
    font-weight:bold;
    transition:0.3s;
    color: azure;
}

.btn-modern:hover{
    transform: scale(1.07);
    box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.home-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 14px;
    z-index: 9999;
    transition: 0.3s;
    background: linear-gradient(90deg,#ff6600,#ff9100);
    border-radius: 8px;
}

.home-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

