﻿*{
    margin: 0;
    padding: 0;
}
.app-view{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-view{
    width: 500px;
    /*background: white;*/
    border-radius: 6px;
    padding: 30px 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;

    /*background: linear-gradient(to bottom, #0d6ed9, #003bbb);*/
    background: linear-gradient(to bottom, white, white);
    animation: dynamics 6s ease infinite;
    -webkit-animation: dynamics 6s ease infinite;
    -moz-animation: dynamics 6s ease infinite;
    opacity: 0.9;
    /*border: solid 1px #13a1fc;*/
    border: solid 1px white;
    background-size:1400% 300%;
    background: white;

}

.log-con {
    /*background: linear-gradient(#13a1fc, #13a1fc) left top, linear-gradient(#13a1fc, #13a1fc) left top, linear-gradient(#13a1fc, #13a1fc) right top, linear-gradient(#13a1fc, #13a1fc) right top, linear-gradient(#13a1fc, #13a1fc) left bottom, linear-gradient(#13a1fc, #13a1fc) left bottom, linear-gradient(#13a1fc, #13a1fc) right bottom, linear-gradient(#13a1fc, #13a1fc) right bottom;*/
    /*background: linear-gradient(white, white) left top, linear-gradient(white, white) left top, linear-gradient(white, white) right top, linear-gradient(white, white) right top, linear-gradient(white, white) left bottom, linear-gradient(white, white) left bottom, linear-gradient(white, white) right bottom, linear-gradient(white, white) right bottom;*/
    background-repeat: no-repeat;
    background-size: 3px 20px, 20px 3px;
    padding: 2px 2px 2px 2px;
    border-radius: 3px;
}
.title{
    font-size: 25px;
    color: #333;
    /*color: white;*/
}
.tips{
    margin-top: 12px;
    color: #666;
    /*color: white;*/
    margin-bottom: 45px;
}
.token-view,.captcha-view{
    width: 380px;
    height: 50px;
}
.token-view input{
    width: 100%;
    height: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.captcha-view{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
.captcha-view input{
    width: 200px;
    padding: 0 10px;
}
.captcha-view img{
    border-radius: 6px;
    cursor: pointer;
}
input{
    border: none;
    border: 1px solid #999;
    border-radius: 6px;
    background: white;
    outline: none;
}
.submit-view input{
    width: 380px;
    height: 50px;
    cursor: pointer;
    color: #666;
    font-size: 16px;
}
.error{
    width: 380px;
    color: red;
    margin-top: 10px;
}
.copy{
    position: fixed;
    bottom: 0;
    padding-bottom: 30px;
    text-align: center;
    /*color: #999;*/
    color: white;
    font-size: 13px;
}




body {
    margin: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #0d6ed9, #003bbb);
    background-size:1400% 300%;
    animation: dynamics 6s ease infinite;
    -webkit-animation: dynamics 6s ease infinite;
    -moz-animation: dynamics 6s ease infinite;
    font-size: 14px;
    color: #ffffff;
    min-height: 700px;
}

div canvas {
    position: absolute;
    top: 0;
    z-index: -1;
}



