.img-placeholder {
    background-image: url("../img/login-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
}

.login-bg {
    background: #50A21D;
    background: linear-gradient(180deg,rgba(80, 162, 29, 1) 0%, rgba(8, 84, 9, 1) 100%);
    min-height: 100vh;
}

.login-bg h1 {
    color: white;
    font-weight: bold;
    font-size: 5.8rem;
    margin-bottom: 100px;
}

.logo-group {
    right: 40px;
    bottom: 40px;
}

.login-logo {
    width: 175px;
    height: 150px;
    margin-bottom: 25px;
    filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.25))
    drop-shadow(0 8px 16px rgba(0,0,0,0.15));
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

.login-text {
    width: 300px;
    width: 300px;
    filter:
    drop-shadow(0 2px 4px rgba(0,0,0,0.25))
    drop-shadow(0 8px 16px rgba(0,0,0,0.15));
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
} 

.logo-resize {
    width: 100px;
    height: 80px;
}

.logo-text-resize {
    width: 225px;
    height: 60px;
}

.logo-hide {
    filter: brightness(150%);
    display: none !important;
}

.input-box{
    position: relative;
    width: 500px;
    margin-top: 75px;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 2rem;
    pointer-events: none;
    transition: .5s;
}

.input-box input {
    width: 100%;
    height: 60px;
    font-size: 1.8rem;
    background-color: #D9D9D9;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:not(:placeholder-shown)~label {
    top: -25px;
    color: #fff;
}

.input-box input:focus,
.input-box input:not(:placeholder-shown) {
    background-color: #fff;
}

.input-box .bx {
    position: absolute;
    top: 32%;
    right: 10px;
    font-size: 2.75rem;
}

.toggle-password{
    position: absolute;
    right: 10px;
    top: 32%;
    font-size: 2.75rem;
    cursor: pointer;
}

.remember-forgot{
    margin-top: 7.5px;
    color: #fff;
    font-size: 1.8rem;
}

.remember-forgot input[type="checkbox"]{
    width: 25px;
    height: 25px;
    margin: 0;
    background-color: #d9d9d98a;
    border: none;
}

.signin-btn {
    width: 100%;
    height: 65px;
    font-size: 2.5rem;
    margin-top: 150px;
    background: #D9D9D9;
    border: none;
    border-radius: 5px;
    color: #000;
    transition: background 0.2s ease;
}

.signin-btn:hover {
    background: #CFCFCF;
}

.signin-btn:active {
    background: #BFBFBF;
}

input.error {
    border: 3px solid #ff4d4d; /* thicker and brighter red */
}
#errorMsg {
    color: #ff4d4d; /* bright red */
    margin-top: 5px;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

@media (max-width:1600px) {
    form {
        width: 90%;
    }

    .input-box {
        width: 100%;
    }

    .remember-forgot {
        font-size: 1.6rem;
    }
}

@media (max-width:1000px) {
    .img-placeholder {
        display: none;
    }

    .login-bg {
        width: 100%;
    }

    form {
        width: 90%;
    }

    .logo-hide {
    display: flex !important;
    }   

    .col-4 {
        flex: 1;
    }
}