﻿* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/assets/img/army-bg.jpg') no-repeat center center/cover;
    position: relative;
}

    /* BLUR + DARK OVERLAY */
    body::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(8px);
        background: rgba(0,0,0,0.4);
        z-index: 0;
    }

/* CARD upar dikhe */
.login-card {
    position: relative;
    z-index: 1;
}

/* CARD */
.login-card {
    width: 420px;
    padding: 60px 35px 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    text-align: center;
    position: relative;
}

/* AVATAR */
.avatar {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #ff8e6f, #5c2b38);
    border-radius: 50%;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* TEXT */
.login-card h2 {
    margin-top: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.login-card p {
    color: #eaeaea;
    font-size: 14px;
    margin-bottom: 25px;
}

/* INPUT */
.input-group {
    margin-bottom: 18px;
}

    .input-group input {
        width: 100%;
        height: 50px;
        border-radius: 12px;
        border: none;
        padding: 0 18px;
        font-size: 14px;
        background: #ffffff;
        box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

        .input-group input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(79,124,255,0.4);
        }

/* CAPTCHA */
.captcha-box {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* BUTTON */
.btn-login {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #bb695e, #b76c82);
    box-shadow: 0 10px 25px rgba(146 85 100);
    cursor: pointer;
    transition: 0.3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(221 102 131);
    }

/* ERROR */
.error {
    background: #ff4d4d;
    color: white;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}


.Register {
    color: #FF4A17;
}

