* {
    margin: 0;
    padding: 0;
}

html{
    height: 100%;
}

body {
    /* background: #f3f3f3; */
    background-image: linear-gradient(to bottom right, rgb(89, 113, 251),rgb(170, 106, 255));
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.control {
    width: 340px;
    /* background: white; */
    background-image: linear-gradient(to bottom right, rgb(183, 117, 255), rgb(135, 147, 255));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
}

.item {
    width: 340px;
    height: 60px;
    background: #f8a7ff;
}

.item div {
    width: 170px;
    height: 60px;
    display: inline-block;
    color: white;
    font-size: 18px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
}

.content {
    width: 100%;
}

.content div {
    margin: 20px 30px;
    display: none;
    text-align: left;
}

p {
    color: white;
    margin-top: 30px;
    margin-bottom: 6px;
    font-size: 15px;
}

.content input[type="text"],
.content input[type="password"],
.content input[placeholder="vcode"] {
    width: 95%;
    height: 40px;
    background: none;
    outline: none;
    color: white;
    border-radius: 10px;
    border: 2px solid #d3d3d3;
    padding: 0 10px;
    box-sizing: border-box;
    transition: 0.25s;
}

.content input[type="text"]:focus,
.content input[type="password"]:focus {
    border: 2px solid #2ecc71;
    width: 100%;
}

#vcode:focus{
    border: 2px solid #2ecc71;
    width: 50%;
}

.content input[type="submit"] {
    margin-top: 40px;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    color: white;
    border: 2px solid #d3d3d3;
    background: none;
    cursor: pointer;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

::-webkit-input-placeholder{
    color: white;
}

.content input[placeholder="vcode"]{
    width: 40%;
}

.content input[type="button"]{
    width: 40%;
    height: 40px;
    float: right;
    margin-left: 5%;
    border-radius: 10px;
    border: none;
}

.content input[type="button"]:hover{
    transition: 0.25s;
    background: #2ecc71;
}

.content input[type="submit"]:hover{
    transition: 0.25s;
    background: #2ecc71;
}

.active {
    background: rgb(255, 105, 255);
}

.item div:hover {
    background: #ff40d6;
}