/* Fill the entire browser window */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Main section */
.u-section-1 {
  width: 100%;
  height: 100vh;

  background-image: url("images/Untitleddesign.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Container fills the section */
.u-section-1 .u-sheet-1 {
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon */
.u-section-1 .u-icon-1 {
  width: 64px;
  height: 64px;

  --animation-custom_in-translate_x: 0px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0.8;
  --animation-custom_in-rotate: 180deg;
  --animation-custom_in-scale: 1;

  margin: 0;
}

/* Make the image inside the icon fit */
.u-section-1 .u-icon-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Continuous rotation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.u-section-1 .u-icon-1 {
  width: 64px;
  height: 64px;

  animation: spin 3s linear infinite;

  margin: 0;
}

.u-section-1 .u-icon-1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

html, body {
    margin: 0;
    width: 100%;
    height: 100%;
}

.u-section-1{
    width:100%;
    height:100vh;

    background:url("images/Untitleddesign.png")
    center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* Loader */

#loader{
    position:absolute;
    z-index:10;
}

.spinner{
    width:64px;
    animation:spin 2s linear infinite;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Overlay */

#popup {
    display: none;

    position: fixed;
    inset: 0;

    justify-content: center;
    align-items: center;

    z-index: 1000;
}

/* Dialog */

.popup-box {

    width: 300px;
    max-width: 90vw;

    background: #fff;

    border: 1px solid #d9d9d9;
    border-radius: 2px;

    padding: 20px;

    box-shadow: 0 2px 10px rgba(0,0,0,.15);

    font-family: "Segoe UI", Arial, sans-serif;
}

/* Microsoft header */

.popup-header {

    display: flex;
    align-items: center;

    margin-bottom: 15px;
}

.ms-logo {

    width: 28px;
    height: 28px;

    margin-right: 8px;
}

.ms-text {

    font-size: 12pt;
    font-weight: 600;

    color: #666;
}

/* Body */

.popup-message {

    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 10pt;
    font-weight: 300;

    color: #222;

    text-align: center;
    justify-content: center;
    align-items: center;

    line-height: 1.5;

    margin: 10px 0 10px 0;

    padding: 0 10px;
}

/* Button */

.captcha-container {
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
}

.popup-button {

    display: block;

    width: 140px;

    margin: 0 auto;

    background: #0067b8;

    color: white;

    text-decoration: none;

    text-align: center;

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: 10pt;
    font-weight: 600;

    padding: 10px 0;

    border-radius: 2px;

    transition: .2s;
}

/* Disabled state */

.popup-button.disabled {

    background: #b5b5b5;

    pointer-events: none;

    cursor: default;

    opacity: .7;
}

/* Enabled state */

.popup-button.enabled {

    background: #0067b8;

    pointer-events: auto;

    opacity: 1;
}

.popup-button.enabled:hover {
    background: #005da6;
}