/* :root {
    --bodyColor: #898a8a;
  --buttonBk: #337ab7;
  --fontColor: #19387B;
--hyperlinkColor: #2F5390;
} */

:root {
    --bodyColor: #333333;
    --topHeader: #3E6680;
    --selected: #1AA6F3;
    --systemMessage: #EF8733;
    --acLabel:#546269;
    --acValue: #546269;
    --viewContainerBackground:  #ECEEEF;
  } 

body {
    margin: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: rgba(0, 0, 0, .87);
    background: var(--bodyColor);
}


.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    height: 400px;
    width: 400px;
    background: #fff;
    padding: 14px;
    border-radius: 4px;
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
}

.logo {
    position: fixed;
    top: calc(50% - 271px);
    left: 50%;
    transform: translate(-50%, -50%)
}

.headerCenter {
    text-align: center;
    color: var(--fontColor);
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 140%;
}

.hyperlink {
    color: var(--hyperlinkColor);
    font-weight: normal;
}


@media (max-width: 700px) {
    .box{
      width: 330px
    }
   
  }