﻿.login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: radial-gradient(#aaafc0, #00134D)
}

.login-wrapper {
    width: 702px;
    background: #FBFBFB;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    flex-direction: row-reverse;
    min-height: 80vh;
    border-radius: 5px;
}



.login-background {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url('ad-login-background.png');
}

    .login-background::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, .3)
    }

.login-form-title {
    font-size: 20px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    display: block
}

.login-input {
    display: block;
    width: 100%;
    background: 0 0;
    color: #666;
    line-height: 1.2;
    padding: 0 25px
}

.login-wrapper mat-form-field {
    width: 100%;
}

.login-ad-logo {
    width: 100%;
    text-align: center;
}


.forgot-password-link {
    text-align: center;
    width: 100%;
}

    .forgot-password-link span {
        font-size: 13px;
        line-height: 1.4;
        color: #999
    }

    .forgot-password-link a {
        font-size: 13px;
        line-height: 1.4;
        color: #00ad5f
    }

.login-form-btn {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 70px;
    border-radius: 3px;
    border: none;
    background: #00ad5f;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s
}

    .login-form-btn:hover {
        background: #333
    }

@media(max-width:992px) {
    .login-form {
        width: 60%;
        padding-left: 30px;
        padding-right: 30px
    }

    .login-background {
        width: 40%
    }
}

@media(max-width:768px) {
    .login-form {
        width: 100%
    }

    .login-background {
        width: 100%
    }
}

@media(max-width:576px) {
    .login-form {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 150px
    }
}
