:root {
    --selected: #099178;
    --bodyColor: #24334C;
    --topHeaderBackground: #24334C;
    --systemMessage: #EF8733;
    --footerBackground: #24334C;
    --footerFont: white;
    --viewContainerBackground: #ECEEEF;
    --loader: #EF8733;

    /* Error RED colors */
    --color-red-0: #FFFFFF;
    --color-red-50: #FEF3F2;
    --color-red-100: #FFE4E1;
    --color-red-200: #FFCDC8;
    --color-red-300: #FFA097;
    --color-red-400: #FD796C;
    --color-red-500: #F54E3E;
    --color-red-600: #E23120;
    --color-red-700: #BE2517;
    --color-red-800: #9D2317;
    --color-red-900: #82231A;
    --color-red-950: #470D08;
    --color-red-1000: #000000;

    /* yachtech*/
    --bodyColor: #254C54;
    --hyperlinkColor: #298891;
    --buttonColor: #298891;
    --buttonColorHover: #286D76;
}

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;
    display:flex;
    flex-direction: column;
    gap: 16px;
    max-width:400px;
    width: 320px;
    margin: 0px 16px;
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
}

.activationBox {
    /*height: 450px;*/
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width:192px;
}

.logo img {
    width:100%;
}

.headerCenter {
    text-align: center;
    color: var(--fontColor);
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    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, #24334C 0px, #24334C 60px, #24334C 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;
}
 */

.dx-button-mode-contained.dx-button-default {
background:var(--buttonColor) !important;
}

.dx-button-mode-contained.dx-button-default:hover {
    background:var(--buttonColorHover) !important;
}

 .logo-and-box {
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    gap:24px;
 }

 /* Form bits for login / etc */
 .dx-form {
    display:flex;
    flex-direction:column;
 }

 .dx-form .dx-layout-manager {
    order:2;
 }

  /* Display the validation at the top */

.dx-form .dx-form-validation-summary:empty {
    display:none;
    visibility:hidden;
}
.dx-form .dx-form-validation-summary{
    order: 1;
    display:flex;
    flex-direction:column;
    gap:4px;
    background:var(--color-red-50);
    padding: 8px;
    border-radius:4px;
}