@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;600&display=swap');
* {
  font-family: 'Quicksand', sans-serif;
}
button:focus {
  outline: none;
}
a {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #000;
}
body
{
    background: #062282;
}
.uc-container
{
    /* text-align: center; */
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.logo-bx
{
    display: inline-block;
    background: #FFF;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.21);
    box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.21);
}
.logo-bx img
{
    width: 250px;
}
.logo-bx h2
{font-size: 19px;border-top: 1px solid #CCC;padding: 15px 0 0;margin: 15px 0 0;color: #062282;font-weight: 600;}
.footer-contact {
  list-style: none;
  padding: 0px;
  text-align: left;
  margin: 21px 0 0;
}
.footer-contact li {
  margin: 0 0 11px;
  position: relative;
  padding: 0 0 0 30px;
}
.footer-contact li i {
  position: absolute;
  left: 0px;
  top: 3px;
}
@media (max-width:768px)
{
    .logo-bx {
    border-radius: 15px;
        width: 90%;
}
    .logo-bx img {
    width: 80%;
}
}