.widget {
    width: 100%;
    border-radius: 10px;
    height: 460px;
}

.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(215, 163, 51);
    border: none;
    border-radius: 10px;
    color:rgb(201, 201, 201);
    font-size: 16px;
    cursor: pointer;
}

#already {
    margin-top: 70px;
}

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%;
    }

    .input {
        width: 300px;
        height: 40px;
    }

    #already {
        margin-top: 100px;
    }
}