#login-div-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    text-align: center;
    padding: 50px 0;
    & #login-container, #forgot-container {
        display: flex;
        flex-direction: column;
        width: 450px;
        height: 350px;
        border-radius: 20px;
        box-shadow: 0px 1px 25px gray;

        & .page-row {
            margin-top: 20px;
        }

        & #login-panel {
            background: black;
            color: gold;
            text-align: center;
            margin-bottom: 10px;
            height: 60px;
            border-top-right-radius: 20px;
            border-top-left-radius: 20px;
            line-height: 2.5;
            font-size: 24px;
        }
    }

    & #forgot-container {
        display: none;
        height: 490px;
    }

    & #submit-btn-div {
        display: flex;
        justify-content: center;
    }

    & #recover-link, #login-link {
        color: black;
    }
}