﻿.login-body {
    /*background: linear-gradient( 135deg, var(--wms-primary), var(--wms-secondary));*/
    background: linear-gradient( 135deg, #0F5132, #198754, #20C997);
    min-height: 100vh;
}
.login-image-panel {
    background-image: url("../assets/images/background-login.png");
    background-size:contain;
    background-position: center;
    position: relative;
}
.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.login-card {
    width: 430px;
    border-radius: var(--wms-radius);
    box-shadow: var(--wms-shadow);
    animation: fadeInLogin 1s;
}
.login-logo {
    width: 220px;
}
.login-logo-small {
    width: 90px;
}
.login-card h3 {
    color: var(--wms-text);
    font-weight: 700;
}
.form-control {
    height: 58px;
    border-radius: 10px;
}
.input-group-text {
    background: white;
    height: 58px;
    font-size: 16px;
}
.btn-success {
    /*background: var(--wms-primary);*/
    background: linear-gradient( 135deg, #0F5132, #198754, #20C997);
    border: none;
    border-radius: 10px;
    height: 50px;
    transition: .3s;
}
.btn-success:hover {
    /*background: var(--wms-primary-dark);*/
    transform: translateY(-2px);
}
@keyframes fadeInLogin {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media(max-width:992px) {

    .login-card {
        width: 95%;
    }
}

.wms-brand h1 {
    font-size: 58px;
    font-weight: 700;
    margin-top: 20px;
}

.brand-description {
    margin-top: 30px;
    font-size: 18px;
    line-height: 30px;
}

.feature-list {
    margin-top: 50px;
}
.feature-item {
    margin-bottom: 18px;
    font-size: 20px;
}
    .feature-item i {
        color: #20c997;
        margin-right: 12px;
    }
.login-footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
    width: 100%;
}

.input-group-text {
    background: #fff;
    border-right: none;
}

.form-control {
    border-left: none;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #198754;
    }

.input-group:focus-within {
    box-shadow: 0 0 0 .25rem rgba(25,135,84,.15);
    border-radius: 12px;
}