* {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    margin: 0;
}
.login-page {
    min-height: 100vh;
    background: url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Dark overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Login Card */
.login-card {
    position: relative;
    width: 360px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    text-align: center;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.logo {
    font-size: 42px;
    margin-bottom: 10px;
}

.login-card h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px 12px;
}

.input-group i {
    margin-right: 10px;
    color: #ffd9df;
}

.input-group input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    width: 100%;
    font-size: 14px;
}

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

button {
    width: 100%;
    padding: 11px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #b11226;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button i {
    margin-right: 6px;
}

button:hover {
    background: #8f0e1e;
    transform: translateY(-1px);
}

.error {
    background: rgba(255, 0, 0, 0.15);
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
}

footer {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
}
.login-card .logo i{
    background: #b11226;
    padding: 12px;
    border-radius: 9px;
    font-size: 29px;
}