body {
    background-color: rgba(232,241,232,1);
}

.panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background-image: url('../images/bg_top.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
    }
    &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background-image: url('../images/bg_bottom.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: bottom center;
    }
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.form {
    width: 400px;
    max-width: 95%;
    margin: 0 auto;
    border: 2px solid #ccc;
    padding: 8px 12px;
    border-radius: 6px;
    @media screen and (min-width: 1024px) {
        padding: 20px 40px;
    }
}
