@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { padding: 0; margin: 0; }
html, body {
    min-height: 100% !important;
    height: 100% !important;
    font-family: 'Raleway', sans-serif !important;
    background-color: #eee !important;
    color: #000 !important;
    overflow-y: hidden;
}

body * {
    font-family: 'Raleway', sans-serif !important;
}

.login-form {
    width: 500px !important; 
    height: 100% !important; 
    background-color: #fff !important; 
    border: 1px solid #aaa !important; 
    border-radius: 3px !important; 
    left: 50% !important; 
    top: 50% !important; 
    transform: translate(-50%, -50%) !important; 
    position: absolute !important;
}
    @media (max-width: 575px) {
        .login-form {
            width: 360px !important; 
        }
    }

    .herb img {
        display: block;
        margin: 40px auto 0;
    }

    .text-line-1 {
        text-align: center; 
        margin-top: 30px;
    }
    .text-line-2 {
        text-align: center;
        margin-top: 10px; 
        color: #888;
    }
    .text-line-3 {
        text-align: center; 
        margin-top: 50px; 
        font-size: 17px; 
        font-weight: 600;
    }
        @media (max-width: 575px) {
            .text-line-2, .text-line-3 {
                padding: 0 20px;
            }
        }

    .login-failed {
        margin: 20px 0 0;
        color: #a00;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
    }


    .form {
        display: block;
        margin-top: 50px;
        margin-left: 60px !important;
        margin-right: 60px !important;
    }
        @media (max-width: 575px) {
            .form {
                margin-left: 35px !important;
                margin-right: 35px !important;
            }
        }

    .form .item {
        margin-bottom: 20px;
    }

    .form .form-label {
        font-size: 14px !important;
        padding-bottom: 8px;
        font-weight: 600;
    }

    .form input {
        width: 100%;
        border: 1px solid #ddd;
        padding: 10px 10px;
        margin-top: 8px;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 14px;
    }

    .form input:focus {
        outline: none !important;
        box-shadow: none !important;
        border: 1px solid #444 !important;
    }

    .form input[type="checkbox"] {
        width: auto;
        padding: 30px !important;
        border-radius: 3px;
    }

    .form .form-group {
        margin-bottom: 25px;
    }
    .form .help-block {
        margin-top: 8px;
        font-size: 12px;
        color: #f00;
        font-weight: 600;
    }

    button[type="submit"] {
        width: auto !important;
    }
        .btn {
            display: inline-block;
            font-weight: 400;
            color: #212529;
            text-align: center;
            vertical-align: middle;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background-color: transparent;
            border: 1px solid transparent;
            padding: .375rem .75rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: .25rem;
            transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
            cursor: pointer;
        }
        .btn:hover {
            color: #212529;
            text-decoration: none;
        }
        .btn-primary {
            color: #fff;
            background-color: #007bff;
            border-color: #007bff;
        }
        .btn-primary:hover {
            color: #fff;
            background-color: #0069d9;
            border-color: #0062cc;
        }

