.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-size: 14px;
}

.topBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px;
}

.topBox>p {
    margin: 20px 0;
    color: #666;
}
.topBox>p a {
    color: #1887E0;
}
.topBox .inpBox {
    width: 100%;
}

.topBox .inpBox input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
    margin-bottom: 10px;
}

.topBox .inpBox input::placeholder {
    color: #ccc;
    font-size: 16px;
}

.topBox .login{
    width: 100%;
    height: 40px;
    color: white;
    background-color: #00b578;
    outline: none;
    border: 0;
    border-radius: 3px;
    font-size: 16px;
}

.topBox .other {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}
.topBox .other a {
    color: #666;
}

/* footer */

footer {
    width: 100%;
}
footer .links {

    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #999;
}
footer .links a {
    color: #999;
    margin: 0 10px;
}

footer .copyright {
    background-color: #f5f5f5;
    width: 100%;
    text-align: center;
    color: #999;
    font-size: 12px;
    padding: 10px;
}
footer .copyright a{
    color: #999;
}