* {
    padding: 0;
    margin: 0;
}


html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    background-image: linear-gradient(to bottom right, rgb(114, 135, 254), rgb(130, 88, 186));
}

.login-container {
    width: 600px;
    /*height: 315px;*/
    margin: 0 auto;
    margin-top: 10%;
    border-radius: 15px;
    box-shadow: 0 10px 50px 0px rgb(59, 45, 159);
    background-color: rgb(95, 76, 194);
}

.left-container {
    display: inline-block;
    width: 330px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: 60px;
    background-image: linear-gradient(to bottom right, rgb(118, 76, 163), rgb(92, 103, 211));
}

.title {
    color: #fff;
    font-size: 18px;
    font-weight: 200;
}

.title span {
    border-bottom: 3px solid rgb(237, 221, 22);
}

.input-container {
    padding: 20px 0;
}

div.input-container div.show-input {
    width: 100%;
    height: 42px;
    margin-top: 10px;
}

div.input-container div.show-input > input {
    border: 0;
    background: none;
    outline: none;
    color: #fff;
    /*margin: 20px 0;*/
    display: block;
    width: 100%;
    padding: 24px 0 0 0;
    transition: .2s;
    height: 18px;
    border-bottom: 1px solid rgb(199, 191, 219);
}

/*div.input-container div.show-input-code{*/
/*    display: flex;*/
/*    */
/*}*/
div.input-container div.show-input-code > div.veri-code {
    width: 100px;
    margin-left: 10px;
    float: right;
}

div.input-container div.show-input-code > input {
    width: calc(100% - 110px);
    float: left;
}

input:hover {
    border-bottom-color: #fff;
}

::-webkit-input-placeholder {
    color: rgb(199, 191, 219);
}

div.message-container {
    margin-top: 20px;
    font-size: 14px;
    transition: .2s;
    color: rgb(199, 191, 219);
    cursor: pointer;
}

.message-container:hover {
    color: #fff;
}

.right-container {
    width: 145px;
    display: inline-block;
    height: calc(100% - 120px);
    vertical-align: top;
    padding: 60px 0;
}

.regist-container {
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
}

.regist-container span {
    border-bottom: 3px solid rgb(237, 221, 22);
}

.action-container {
    font-size: 10px;
    color: #fff;
    text-align: center;
    position: relative;
    top: 200px;
    height: 60px;
}

div.action-container .purple {
    width: calc(100% - 20px);
    height: 40px;
    background-image: linear-gradient(to right, #6253e1, #852D91);
    box-shadow: 0 4px 15px 0 rgba(236, 116, 149, 0.75);
    border: 0;
    margin: 10px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 10px;
    border-radius: 50px;
    color: white;
    outline: none;
    position: relative;
}

div.action-container .purple:hover:before {
    background-position: left bottom;
}


div.action-container .purple:before {
    content: '';
    display: block;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 50%);
    background-size: 210% 100%;
    background-position: right bottom;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 50px;
    transition: all 1s;
    -webkit-transition: all 1s;
}
