﻿.login-background {
    background-color: #344f7d !important;
    background-image: linear-gradient(43deg, #344f7d 0%, #2a63c3 46%, #66bfff 100%) !important;
}

.login-container {
    background: white !important;
    padding: 3rem;
    box-shadow: 0 8px 25px 4px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.logo-login {
    height:98px;
    margin-left: -36px;
}

.primary-color {
    color: #2A63C3;
}

.secondary-color {
    color: #686868;
}

.input-login {
    height: 3rem;
    border-radius: 0.3rem;
    border: 1px solid #B8B8B8;
    padding-left: 0.5rem;
}

    .input-login::placeholder {
        color: #B8B8B8;
    }


.btn-login {
    width: 100%;
    background: #2A63C3;
    font-size: 16px;
    font-weight: 600;
    color: white;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease-in !important;
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.1);
}

    .btn-login:after {
        font-family: 'FontAwesome';
        content: '\f007';
        font-size: 1.2rem;
        line-height: 40px;
        opacity: 0;
        position: absolute;
        right: -40px;
        top: 0px;
        transition: right 0.4s, opacity 0.4s;
    }

.btn-login:hover, .btn-login:focus, .btn-login:active {
    padding-right: 24px;
    color: white;
}

    .btn-login:hover:after, .btn-login:focus:after, .btn-login:active:after {
        opacity: 1;
        right: 30px;
    }