﻿.container-full-height {
    height: 100vh;
}

.left-side {
    background-image: url("../../Images/Content/admin.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: 1;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    max-width: 400px;
    padding: 30px;
    background-color: #fff;
    border-radius: 15px;
    border: 2px solid #0d6efd;
    height: 60%;
}

.logo {
    position: absolute;
    top: 2%;
    right: 20px;
}

.login-name {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

input[type=text], input[type=password] {
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    width: 300px;
}

    input[type=text]:focus {
        outline: none;
    }

button {
    align-items: center;
    background-image: linear-gradient(144deg, #AF40FF, #5B42F3 50%, #00DDEB);
    border: 0;
    border-radius: 10px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-size: 18px;
    justify-content: center;
    line-height: 0.3em;
    max-width: 100%;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

    button:active,
    button:hover {
        outline: 0;
    }

    button span {
        background-color: #fff;
        color: blue;
        padding: 16px 24px;
        width: 100%;
        transition: 300ms;
    }

    button:hover span {
        background: none;
        color: #fff;
    }

    button:active {
        transform: scale(0.9);
    }

.password-forgot {
    font-size: 12px;
    float: right;
    margin-top: 7px;
    color: #0d6efd;
    cursor: pointer;
}

    .password-forgot:hover {
        text-decoration: underline;
    }

@media only screen and (max-width: 600px) {

    .left-side {
        display: none;
    }
}
