@media screen and (min-width: 1025px) {
    body {
        background-color: #FFFFFF;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1em;
        margin: 0px 10px 0px 10px;
        overflow-x: hidden;
    }

    .menu-burger{
        visibility: hidden;
        display: none;
    }

    .menubar{
        background-color: #86A789;
        display: flex;
        margin: 0px -10px;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .menu > ul{
        padding: 0.1em;
        margin: 0.5em;
    }

    .form-switcher{
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .form-switcher > form{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
    }

    .form-switcher > form > .btn-link{
        padding: 1em;
        margin: 1em;
    }

    .btn-link{
        background-color: #4F6F52;
        border-style: none;
        border-radius: 1em;
        padding: 1em;
        width: 15em;
        height: auto;
        font-weight: bold;
    }

    .reg-form, .login-form{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    form > h1{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-content: center;
        align-items: center;
    }

    form > div{
        display: flex;
        width: 25%;
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: space-between;
        justify-content: space-between;
        align-items: center;
        line-height: +2;
    }
}