* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* FULL BACKGROUND */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/images/login-bg.jpg') no-repeat center center fixed;
    background-size: cover !important;
}

/* LOGO TOP LEFT */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 60px;
    z-index: 10;
}

/* LOGIN CARD */
.login-card {
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 12px;
    width: 360px;
    max-width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.login-card h2 {
    margin-bottom: 20px;
    color: #333;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

/* INPUT */
.input-group input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

/* ICONS RIGHT SIDE */
.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    cursor: pointer;
    font-size: 18px;
}

/* LOGIN BUTTON */
.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #7912FF;
    color: white;
    font-size: 17px;
    cursor: pointer;
}

.login-btn:hover {
    background: #600fd1;
}

/* STATUS MESSAGE */
.status-msg {
    margin-top: 15px;
    color: #b00;
}