.widget {
    width: 100%;
    border-radius: 10px;
    height: 890px;
}

.input {
    width: 250px; 
    height: 30px; 
    font-size: 30px; 
    border-radius: 10px;
    background-color: rgb(80, 80, 80);
    border: none;
    color:rgb(201, 201, 201);
    margin: 5px
}

.submitbutton {
    width: 100px;
    height: 40px;
    margin-top: 10px;
    background-color: rgb(80, 80, 80);
    border: none;
    border-radius: 10px;
    color:rgb(201, 201, 201);
    font-size: 16px;
    cursor: pointer;
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

h1 {
    font-family: Lato; color: rgb(218, 218, 218);
}

.input:focus {
    outline: 3px solid rgb(215, 163, 51);
}

@media (min-width: 1200px) {
    .widget {
        width: 33%;
        height: 680px;
    }

    .input {
        width: 300px;
        height: 40px;
    }

    #already {
        margin-top: 100px;
    }
}