.page_center {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page_center_panel {
    width: 100%;
    max-width: 500px;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: 400;
    color: #5c5c5c;
}

.noacct {
    margin-top: 50px;
    text-align: center;
}

.error > span {
    display: block;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2em;
    border-radius: 4px;
	line-height: 1.4em;
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.success {
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
    line-height: 2em;
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.gonow {
    display: block;
    color: green;
    font-size: 1.5em;
    text-align: center;
}

@media screen and (max-width: 440px) {
    .title {
        font-size: 1.5em;
    }
    .form {
        padding: 20px;
    }
    .form__field .btn-action {
        font-size: 1.1em;
        padding: 10px;
    }
}