﻿/* BACKGROUND IMAGE */
.login-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url('img/human.jpg') no-repeat center center/cover;
    position: relative;
}

/* DARK OVERLAY */
.login-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* LOGIN CARD */
.login-container {
    max-width: 380px;
    width: 100%;
    margin: auto;
    padding: 30px 25px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;
    text-align: center;
}

/* LOGO CENTER */
.login-logo img {
    width: 110px;
    display: block;
    border-radius:50%;
    margin: 0 auto 10px auto;
}

/* INPUT ICON */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 14px;
}

/* INPUT STYLE */
.input-icon input {
    padding-left: 40px;
    height: 45px;
    background: transparent;
    border: 1px solid #aaa;
    color: #fff;
    border-radius: 6px;
}

.input-icon input::placeholder {
    color: #ddd;
}

/* OPTIONS (remember + forgot) */
.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* FIX BIG FONT ISSUE */
.options label,
.options a {
    font-size: 14px !important;
}

/* BUTTON */
.btn-primary {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    background: #1b4bad;
    border: none;
    border-radius: 6px;
}

.btn-primary:hover {
    background: #163c8c;
}

/* REGISTER TEXT */
.register-text {
    margin-top: 15px;
    font-size: 14px;
}

.register-text a {
    color: #00bfff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 576px) {

    .login-container {
        margin: 15px;
        padding: 20px;
    }

    .login-logo img {
        width: 80px;
    }

    h2 {
        font-size: 22px;
    }

    .options {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

