@charset "UTF-8";
/* ====================================
LOGIN
------------------------------------ */
.login{
    display: flex;
    align-items: center;
    padding: 100px;
    width: 100%;
    height: 100%;
    background: url(/assets/img/bg_login2.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* ====================================
Title
------------------------------------ */

/* Block */
.login__title{
    color: #fff;
    flex: 2;
}

/* LOGO */
.login_logo{
    width: 140px;
    margin-bottom: 60px;
}

/* Title */
.login__title .title{
    letter-spacing: 2px;
    line-height: 1.6;
    font-size: 24px;
}

/* Desc */
.login__title .desc{
    letter-spacing: 1px;
    font-size: 14px;
    opacity: 0.6;
}

/* ====================================
Title
------------------------------------ */

/* Block */
.login__form{
    flex: 1;
    padding: 40px 60px 20px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
}

/* Title */
.login__form .title{
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.login__form form .inputItem{
    margin-bottom: 20px;
}

/* Form -> Input */
.login__form form input{
    border-radius: 100px;
    width: 100%;
}

/* Form -> Button */
.login__form form .btn{
    width: 60%;
    border-radius: 100px;
    font-size: 16px;
    padding: 10px 40px;
    margin-bottom: 10px;
}

.login__form .forgotPassword{
    font-size: 12px;
}


/* ====================================
Title
------------------------------------ */
.login__copyright{
    color: #fff;
    margin-bottom: 0;
    font-size: 12px;
    opacity: 0.6;
    position: absolute;
    bottom: 40px;
    right: 40px;
}