﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../../img/kaizen_body.jpg') no-repeat center center;
    background-size:cover;
    position: relative;
}
small{
    color:red;
    font-weight:600;
}
.form-group{
    text-align:left;
}
.ui-checkbox {
    font-weight: 600;
}

    .ui-checkbox .input-span, .ui-radio .input-span {
        border-color: #fff !important;
    }
.ui-checkbox-info input:checked ~ .input-span {
    background: #1e3c72 !important;
    border-color: #1e3c72 !important;
}
.ui-checkbox .input-span, .ui-radio .input-span{
    width:22px !important;
    height:22px !important;
}
.m-t-5 {
    vertical-align: -2px;
}
.login-container {
    width: 400px; /* 👈 smaller */
    padding: 35px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    text-align: center;
    color: #fff;
    position: absolute; /* 👇 right bottom placement */
    right: 50px;
    bottom: 20px;
}

    .login-container img {
        width: 120px;
        margin-bottom: 20px;
    }

    .login-container h2 {
        font-size: 20px;
        margin-bottom: 22px;
        letter-spacing: 1px;
    }

.input-group {
    margin-bottom: 16px;
    text-align: left;
}

    .input-group label {
        font-size: 12px;
        margin-bottom: 5px;
        display: block;
        color: #eee;
    }

    .input-group input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: none;
        outline: none;
        font-size: 14px;
    }

.btn-login {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top:20px;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    }

.footer-text {
    margin-top: 18px;
    font-size: 11px;
    color: #ddd;
    opacity: 0.85;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-container {
        right: 50%;
        bottom: 40px;
        transform: translateX(50%);
        width: 90%;
    }
}
