@import url('https://fonts.googleapis.com/css?family=Open+Sans');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
    color:#6d6e70;
    height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
}

.container{
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #aed8f1 0%, #ffffff 100%);
    width:95%;
    height:95vh;
    border-radius: 50px;
    display:flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0,35,66,.4) 
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content .logo{
    width:300px;
    margin-bottom: 18px;
}