.window-container {
    overflow: auto;
}

.window {
    margin-top: 100px;
    padding: 50px;
    margin-right: auto;
    margin-left: auto;

    width: 450px;

    max-height: 500px;
    overflow-y: auto;
    overflow-x: auto;
    box-shadow: black 0 0 5px 1px;
    text-align: center;
    background-color: white;
}

.window label {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 5px;
    width: 95%;
}

.window input {
    width: 95%;
}

.window textarea {
    width: 95%;
    min-height: 100px;
}