/* WHITE FULL BACKGROUND */
body {
    background: #ffffff;   /* White background */   
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;   /* <--- MOVE BOX UP */
    position: relative;
}

/* LEFT & RIGHT LOGOS */
.side-logo {
    width: 120px;
    position: absolute;
    top: 40px;
}

.logo-left {
    left: 376px;
}

.logo-right {
    right: 376px;
}

/* LOGIN BOX (same style as screenshot) */
.login-box {
    width: 420px;
    padding: 40px;
    border-radius: 15px;
    background: rgb(246 247 247 / 85%); /* Dark blue like screenshot */
    border: 1px solid rgba(255,255,255,0.2);
    color: black;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-title {
    text-align: center;
    color: black;
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: black;
}

input[type=text],
input[type=password] {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #9fb7e6;
    background: #eef3ff;
    margin-bottom: 18px;
    font-size: 14px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(#2fa5ff, #0069d9);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
}

.forgot-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}
