*

/** Resetar o Navegado**/
{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

/** Corpo **/

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1E272E;
    width: 100vw;
    height: 100vh;
}

.box{
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 80%;
    height: 300px;
    margin-top: -100px;
}

.title{
    font-size: 35px;
    margin-bottom: 30px;
    color: #fff;
}

.box-input{
    width: 100%;
    display: flex;
    justify-content: center;
}

.input-url{
    padding: 12px 20px;
    text-align: center;
    outline: transparent;
    width: 40%;
    border-radius: 50px;
    font-size: 20px;
    color: #1E272E;
}

.btn{
    padding: 15x 20px;
    width: 170px;
    margin-left: 10px;
    border-radius: 50px;
    background-color: #1F91DC;
    font-size: 20px;
    color: #1E272E;
}

.btn:hover{
    transition: .5s;
    background-color: #fff;
}