* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    // i.e. Nexus5/Chrome and Kindle Fire HD 7'': ;
}
html {
    background: url(/assets/img/bg.png) #33aae3;
    background-size: 50vw;
}
body {
    color: #fff;
    font-family: Arial,Helvetica,sans-serif;
    width: 57vw;
    margin: 20px auto 0;
    text-align: center;
    max-width: 728px;
}
a {
    color: #2196F3;
    text-decoration: none;
}
a:hover{color:rgba(33, 150, 243, 0.8)}
.hidden{display:none !important;}
header {
    background: #373735;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
    overflow: hidden;
    padding: 15px;
}
header .head {
    width: 57vw;
    max-width: 728px;
    margin: 0 auto;
}
.logo img{
    height: 26px;
}
.gridtwo {    
    display: grid;
    grid-template-columns: auto auto;}
    .gridthree {    
    display: grid;
    grid-template-columns: auto auto auto;}
    .maincontenthome {
    grid-template-columns: 50% 50%;
    border-radius: 5px;
    overflow: hidden;
}
header .head a {color:#fff;}
.logo {
    text-align: left;
}
.LoginCP {
    text-align: right;
    margin-top: 5px;
}
.LoginCP a {
    border-color: #3498db;
    color: #fff;
    box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
    transition: all 150ms;
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 3px;
}
.LoginCP a:hover {
    border-color: #2e86c1;
    box-shadow: 0 0 40px 40px #2e86c1 inset, 0 0 0 0 #2e86c1;
}
main {
    margin-top: 60px;
    padding: 20px 0;
}
.signupform {
    background: rgba(37, 37, 37, 0.8);
    padding: 30px 20px;
}
.dot:before {
    content: "";
    font-size: 0;
    border: 3px solid;
    border-radius: 50%;
    top: 10px;
    position: relative;
}
input, select {
    width: 100%;
    background: transparent;
    color: #fff;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    outline:none;
    margin-bottom: 15px;
    font-size: 12px;
    height: 35px;
}
option, optgroup {
    color:#000;
}
button {
    color: #fff !important;
    font-weight: bold;
    background: rgb(56,151,240);
    border: 0;
    width: 100%;
    outline: none;
    cursor: pointer;
    margin-bottom: 10px;
    line-height: 35px;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 1px rgba(0, 0, 0, 0.1), inset 0 -10px 20px rgba(0,0,0,0.1);
    padding: 0;
    overflow: hidden;
}
button:hover{background:#2588e4}
button:after{
    content: "\f105";
    float: right;
    width: 30px;
    background: rgba(0,0,0,0.15);
}
.icon:after, .icon:before{font-family: "Font Awesome 5 Free";}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #bfbfbf;
    -webkit-box-shadow: 0 0 0px 1000px rgba(37, 37, 37, 0.8) inset;
    transition: background-color 5000s ease-in-out 0s;
}
.welcome {
    padding: 5px 20px;
    background: #fff;
    color: rgba(37, 37, 37, 0.8);
}
.welcome ul {
    text-align: left;
}
.welcome li {
    list-style: none;
    padding: 10px 0;
}
.content{
    margin-top: 10px;
    background: #fff;
    border-radius: 5px;
    overflow:hidden;
    display: grid;
}
footer {
    font-size: 13px;
    background: rgba(37, 37, 37, 0.8);
    padding: 20px;
    border-radius: 3px;
}
.red {
    color: #b70000;
}

.securitycode {
    grid-template-columns: 38% 62%;
    margin-bottom: 15px;
    max-height: 50px;
}
.securitycode img {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-right: 0;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.securitycode input{
    height: 100%;
    border-left: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-bottomleft: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
@media screen and (max-width: 870px){
    body, header .head{
        width: 95vw;
    }
}
@media screen and (max-width: 640px){
    body, header .head {
        width: 100%;
    }
    main {
        margin-top: 55px;
        padding: 0;
    }
    .maincontenthome {
        grid-template-columns: 100%;
        border: 0;
        border-radius: 0;
    }
    .signupform {
         order: 2;
    }
    .welcome {
         padding: 0;
         background: rgba(37, 37, 37, 0.8);
        color: #ffffff;
        order: 1;
    }
    .content {
        margin-top: 0;
        border-radius: 0;
         border: 0;
    }
    footer {
        border-radius: 0;
    }
}