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

body {
    height: 100vh;
    background: radial-gradient(circle at bottom, #1b3cff, #020b3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.container {
    display: flex;
    align-items: center;      /* Centers vertically */
    justify-content: center;  /* Centers horizontally */
    height: 100px;            /* Example height */
}
.background {
    height: 100vh;
    display: flex;
    margin: 0; /* Remove default body margin */
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 380px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(0, 80, 255, 0.6);
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 18px;
    opacity: 0.9;
}

h3 {
    text-align: center;
    font-size: 24px;
}

p {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.forgot {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #9bb7ff;
    text-decoration: none;
}

.remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(79,172,254,0.8);
}

.btn-login:hover {
    opacity: 0.9;
}

.footer {
    text-align: center;
    margin-top: 20px;
}

.footer a {
    color: #9bb7ff;
    text-decoration: none;
}

.help {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.8;
}
