body {
    background-color: #222222;
    font-family: WorkSansLight;
}

html,
body {
    height: 100%;
}

body {
    background-color: #222222;
    font-family: WorkSans;
    display: flex;
}

.login-box {
    max-width: 557px;
    min-width: 200px;
    width: 90%;
    margin: auto;
    align-items: center;
}

.login-logo {
    margin: auto;
    max-width: 312px;
    width: 100%;
    /* height: 50px; */
    margin-bottom: 40px;
}

.login-logo img {
    width: 100%;
}

.login-message {
    font-size: 14px;
    line-height: 24px;
    color: #ef4128;
    text-align: left;
    margin-bottom: 30px;
    font-family: WorkSansLight;
}

.input-box input {
    color: #ffffff;
    height: 60px;
    width: 100%;
    background-color: inherit;
    border: none;
    border-bottom: 2px solid #2d22fb;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: -0.35px;
    margin-bottom: 30px;
    font-weight: lighter;
    font-family: WorkSansLight;
}

    .input-box input::placeholder {
        color: #ffffff;
        font-weight: lighter;
    }

    .input-box input:focus {
        outline: none;
        border: none;
        border-bottom: 2px solid #2d22fb;
    }

    .input-box input:-webkit-autofill {
        -webkit-text-fill-color: #ffffff;
        -webkit-box-shadow: 0 0 0px 1000px #222222 inset !important;
    }

.login-btn {
    width: 55px;
    color: #ffffff;
    border-bottom: 2px solid #222222;
    font-size: 18px;
    line-height: 55px;
    margin-bottom: 24px;
    cursor: pointer;
    letter-spacing: -0.35px;
    font-family: WorkSansSemiBold;
}

    .login-btn:hover {
        border-bottom: 2px solid #ef4128;
    }

.forgot-password a {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: -0.35px;
    font-family: WorkSansLight;
}

    .forgot-password a:hover {
        text-decoration: none;
    }

    .forgot-password a:visited {
        color: #ffffff;
    }

.copyright {
    margin-top: 48px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.35px;
    color: #ffffff;
    font-family: WorkSansLight;
}

/* select */
.login-company {
    display: none;
}

.a-select {
    color: #ffffff;
    height: 60px;
    width: 100%;
    background-color: inherit;
    border: none;
    border-bottom: 2px solid #2d22fb;
    font-size: 24px;
    line-height: 60px;
    letter-spacing: -0.35px;
    margin-bottom: 30px;
    position: relative;
    font-weight: lighter;
    font-family: WorkSansLight;
}

    .a-select.a-border-radius {
        border-radius: 4px;
    }

    .a-select .a-select-label {
        display: block;
        color: #ffffff;
        font-weight: lighter;
        font-size: 24px;
        line-height: 60px;
        letter-spacing: -0.35px;
        font-family: WorkSansLight;
    }

    .a-select.focus .a-select-label {
        display: none;
        font-family: WorkSansLight;
    }

    .a-select input {
        display: block;
        border: none !important;
        padding: 0;
        width: 100%;
        height: 0px;
        line-height: 0px;
        transition: height 0s, line-height 0s, font-size 0s;
        background-color: transparent;
        font-family: WorkSansLight;
    }

    .a-select.focus input {
        height: 60px;
        line-height: 60px;
        transition: height 0.3s, line-height 0.3s, font-size 0.3s;
    }

    .a-select input:hover {
        padding: 0;
    }

    .a-select ul {
        color: #000000;
        list-style-type: none;
        background-color: #fff;
        width: 101%;
        overflow-y: auto;
        position: absolute;
        top: 56px;
        max-height: 0;
        transition: max-height 0.3s ease-out;
        z-index: 10;
        padding-left: 10px;
        font-family: WorkSansLight;
    }

        .a-select ul li {
            line-height: 40px;
            height: 40px;
            cursor: pointer;
        }

            .a-select ul li.hover {
                background-color: #e3e7eb;
            }

        .a-select ul.slide-down {
            max-height: 250px;
            animation: slide-down 0.2s ease-in;
            transition: max-height 0.2s ease-in;
            transform-origin: 50% 0;
        }

            .a-select ul.slide-down li:hover {
                background-color: #e3e7eb;
            }

            .a-select ul.slide-down li.hover {
                background-color: #e3e7eb;
            }

@keyframes slide-down {
    0% {
        transform: scale(1, 0);
    }

    100% {
        transform: scale(1, 1);
    }
}

@media (max-width: 768px) {
    .login-logo {
        margin-bottom: 20px;
    }

    .login-message {
        margin-bottom: 15px;
    }

    .input-box input {
        margin-bottom: 15px;
    }

    .copyright {
        margin-top: 24px;
    }
}
