body.tech-login-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(25, 135, 84, 0.20), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827, #1e293b);
    font-family: "Segoe UI", sans-serif;
    color: #fff;
}

.tech-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.tech-login-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 26px 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.tech-brand-area h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.tech-brand-area p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.brand-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.35);
}

.tech-label {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.mobile-input-wrap {
    position: relative;
}

.mobile-input-wrap i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.75);
}

.tech-input {
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    padding-left: 46px;
    font-size: 18px;
    font-weight: 600;
}

.tech-input:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(13, 110, 253, 0.7);
    box-shadow: 0 0 0 0.18rem rgba(13, 110, 253, 0.18);
}

.tech-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.mpin-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.mpin-digit {
    height: 58px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.mpin-digit:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(32, 201, 151, 0.9);
    box-shadow: 0 0 0 0.18rem rgba(32, 201, 151, 0.18);
}

.tech-login-btn {
    height: 54px;
    border: 0;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.28);
}

.tech-login-btn:hover,
.tech-login-btn:focus {
    color: #fff;
    transform: translateY(-1px);
}

.tech-alert {
    border-radius: 16px;
    font-size: 14px;
}

.brand-logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

.brand-logo img{
    max-width:160px;
    height:auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
    transition: transform .3s ease;
}

.brand-logo img:hover{
    transform: scale(1.05);
}

@media (max-width: 420px) {
    .tech-login-card {
        padding: 22px 16px;
    }

    .mpin-boxes {
        gap: 8px;
    }

    .mpin-digit {
        height: 52px;
        font-size: 22px;
    }
}