:root {
    --selected: #099178;
    --bodyColor: #152c46;
    --topHeaderBackground: #152c46;
    --systemMessage: #EF8733;
    --footerBackground: #152c46;
    --footerFont: white;
    --viewContainerBackground: #ECEEEF;
    --loader: #EF8733;
}

body {
    margin: 0;
    font-family: 'Open Sans';
    color: rgba(0, 0, 0, .87);
    /* background: var(--bodyColor); */
    background-image: linear-gradient(var(--bodyColor), #024a70);
    /* background-image: linear-gradient( var(--bodyColor),#96c1d9); */
}


.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box {
    height: 280px;
    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);
}

.activationBox {
    height: 450px;
}

.logo {
    position: fixed;
    top: calc(50% - 250px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.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
    }

    .activationBox {
        height: 350px;
    }
}

.circles {
    height: 100vh;
    background-image: repeating-radial-gradient(circle at top right, #152C46 0px, #152C46 60px, #152C46 80px, #2C4158 60px, #2C4158 150px);

}


/* .button,
.button .dx-button-content {
  padding: 0;
}

.button-indicator {
  height: 32px; width: 32px;  display: inline-block;  vertical-align: middle;  margin-right: 5px;
}
 */

