body
{
    font-family: 'Lato', sans-serif;
    color: #3f3f3f;
    font-size: 14px;
}
a, .link {
  color: #3C86CB;
  cursor: pointer;
  text-decoration: none;
}
.login-container
{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.main-block {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
}
.left-block {
    padding-top: 155px;
}

.left-block {
    flex: 0 0 auto;
    justify-content: center;
    overflow: hidden;
    padding: 215px 0 0 50px;
}
.right-block {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    padding: 65px 50px 50px;
    width: 500px;
}
.logo-block {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    height: 40px;
}
.left-logo {
    background: url("aruba-logo.svg") no-repeat left center;
    flex: 1 0 auto;
    height: 100%;
    background-size: 140px 40px;
}
.right-logo {
    background: url("envelope.svg") no-repeat left center;
    flex: 0 0 auto;
    height: 35px;
    width: 45px;
}
.form-block {
    align-items: stretch;
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding-top: 24px;
}
.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.tab-switcher-block
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.tab-switcher-block .nav-tabs
{
    border-bottom: none;
}
.tab-switcher-block .nav-tabs .nav-item .nav-link
{
    border: 1px solid #bbb;
    background-color: #fff;
    color: #333;
}
.tab-switcher-block .nav-tabs .nav-item .nav-link.active
{
    background: #f1f1f1;
    font-weight: 600;
}
.tab-switcher-block .nav-tabs .webmail-tab
{
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-right: none !important;
}
.tab-switcher-block .nav-tabs .manage-tab
{
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
}
.feedback-block {
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    display: flex;
    flex: 0 0 auto;
    font-size: 12px;
    min-height: 31px;
    margin-top: 35px;
    padding: 5px 20px;
    box-sizing: border-box;
}
.inputWithIcon input{
    width: 100%;
    border: none;
    border-bottom: 2px solid #aaa;
    border-radius: 0px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
  }
  
  .inputWithIcon input:focus {
    border-color: #f4a253;
  }
  
  .inputWithIcon input {
    padding-left: 32px;
  }
  
  .inputWithIcon {
    position: relative;
  }
  
  .inputWithIcon span {
    position: absolute;
    left: 0;
    top: 18px;
    padding: 9px 8px;
    color: #aaa;
    transition: 0.3s;
  }
  
  .inputWithIcon .email-icon
  {
    background: url("login-icon.svg") no-repeat left center;
    background-size: 19px 13px;
    flex: 0 0 auto;
    height: 13px;
    margin-right: 10px;
    width: 19px;
  }
  .inputWithIcon .password-icon
  {
    background: url("password-icon.svg") no-repeat left center;
    background-size: 19px 18px;
    flex: 0 0 auto;
    height: 13px;
    margin-right: 10px;
    width: 19px;
  }
  .inputWithIcon .toggle-password
  {
    position: absolute;
    right: 5px;
    top: 14px;
    padding: 9px 8px;
    color: #000;
    transition: 0.3s;
    font-size: 20px;
  }
  .checkflex
  {
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .radio-button-check
  {
    display: flex;
    align-items: center;
  }
  .radio-button-check .radio-button-header
  {
      margin-right: 10px;
  }
  .radio-container
  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 0 auto;
  }
  .radio
  {
      display: flex;
      font-size: 14px;
    align-items: center;
  }
  .radio label
  {
      margin-bottom: 0;
  }
  .radio input[type=radio] {
    position: absolute;
    opacity: 0;
  }

  .radio input[type=radio] + .radio-label:before {
    content: "";
    background: transparent;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    position: relative;
    top: 0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
  }
  .radio input[type=radio]:checked + .radio-label:before {
    background-color: #f06734;
    box-shadow: inset 0 0 0 4px #f4f4f4;
  }
  .radio input[type=radio]:focus + .radio-label:before {
    outline: none;
    border-color: #f06734;
  }
  .radio input[type=radio]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
  }
  .radio input[type=radio] + .radio-label:empty:before {
    margin-right: 0;
  }
  .test-sticker
  {
    align-items: center;
    background-color: #6abe0f;
    color: #fff;
    display: flex;
    font-weight: bold;
    margin: 0 10px;
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 12px;
  }
  .login-button
  {
    align-items: center;
    background: #f06734;
    background: -webkit-linear-gradient(0deg, #d84e1a, #f06734);
    background: -o-linear-gradient(0deg, #d84e1a, #f06734);
    background: -moz-linear-gradient(0deg, #d84e1a, #f06734);
    background: linear-gradient(0deg, #d84e1a, #f06734);
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-weight: bold;
    height: 50px;
    justify-content: center;
    margin: 50px 0 0;
    padding: 0 20px;
    text-transform: uppercase;
    user-select: none;
    width: 100%;
  }

  .footer-block
  {
    flex: 0 0 auto;
    position: fixed;
    bottom: 5px;
    width: 100%;
  }
  .footer-block .accessible-link {
    font-size: 14px;
    margin-bottom: 3px;
    text-align: center;
}
.footer-block .text-footer {
    font-size: 11px;
    text-align: center;
}
#options button
{
    display: flex;
    align-items: center;
}
#options button:focus
{
    box-shadow: none;
}
#options .dropdown-menu
{
    padding: 0px;
    width: auto;
    min-width: auto;
    border: 1px solid #ddd;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.37);
    left: auto !important;
    right: 0;
    border-radius: 0;
}
#options .dropdown-menu li{
  padding: 3px 15px;
  font-size: 13px;
  cursor: pointer;
}
#options .dropdown-menu a{
  display: flex;
  align-items: center;
  text-indent: 5px;
}
#options button [class*="flagstrap-"]
{
    width: 18px;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
}


.feedback-cnt {
  width: 46px;
  height: 159px;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 65%;
  margin-top: -79.5px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.feedback-cnt span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(270deg) translate(-50%, -50%);
  transform-origin: 0 0;
  font-size: 18px;
  font-weight: bold;
}


.feedback-block {
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  min-height: 31px;
  margin-top: 35px;
  padding: 5px 20px;
  box-sizing: border-box;
}
.feedback-block.error {
  background-color: #fbd7ca;
}
.feedback-block.error .feedback-icon {
  background: url("error-icon.png") no-repeat center;
}
.feedback-icon {
  flex: 0 0 auto;
  height: 17px;
  margin-right: 10px;
  width: 17px;
}
.feedback-text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width:991px) {
    .main-block
    {
        flex-direction: column;
    }
    .left-block
    {
        display: none;
    }
    .main-block, .feedback-cnt, .footer-block
    {
      display: none;
    }
    .login-container
    {
      background: #f9f9f9;
      min-height: 100vh;
      height: 100%;
    }
    .mobile-login
    {
      display: block;
      padding-top: 92px;
      padding-bottom: 30px;
    }
    .mob-login-header
    {
      display: block;
      width: 302px;
      margin: auto;
    }
    .mob-login-header .mob-logo
    {
      background: url("aruba-logo.svg") no-repeat scroll center top rgba(0, 0, 0, 0);
      background-size: auto;
      width: 198px;
      height: 100px;
      margin: 30px auto 20px;
    }
    .mob-login-form-body
    {
      width: 302px !important;
      margin-right: auto;
      margin-left: auto;
      width: 100%;
    }
    .mob-login-form-body .ui-body-inherit
    {
      border:1px solid #dadada;
      border-radius: 2px;
      margin-bottom: 30px;
      background-color: #fff;
      text-shadow: 0 1px 0 #f3f3f3;
      color: #333;
      width: 100%;
    }
    .mob-login-form-body .ui-input-text input
    {
      padding: 11px 16px;
      border-radius: 2px;
      font-size: 15px;
      font-family: "Lato Regular", sans-serif;
      width: 100%;
      border: none;
      margin: 0;
    }
    .mob-login-form-body .ui-body-a
    {
      display: none;
    }
    .mob-login-form-body .ui-checkbox
    {
      width: 300px;
      display: flex;
      gap: 10px;
    }
    .mob-login-form-body .ui-checkbox-off
    {
      order: 2;
      padding: 0;
      margin: 0;
      line-height: 1;
    }
    .mob-login-form-body .ui-checkbox .new input{
      width: 20px;
      height: 20px;
    }
    .ui-btn {
      font-size: 16px;
      margin: 0.5em 0;
      padding: 0.7em 1em;
      display: block;
      position: relative;
      text-align: center;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }
    .mob-login-form-body #submitButton
    {
      background-color: #ec6533;
      font-size: 16px;
      text-transform: uppercase;
      color: #ffffff;
      font-family: "Lato Regular", sans-serif;
      font-weight: 700;
      text-shadow: none;
      border: none;
      border-radius: 2px;
      height: 50px;
      line-height: 50px;
      padding: 0;
      margin-bottom: 32px;
    }
    .mob-login-form-body #lostPasswordButton.lost_pwd_login_page {
      display: block;
      width: 302px;
      font-weight: 400;
      margin: 0 auto 20px;
      text-decoration: underline;
      text-align: center;
      color: #1474bd;
  }
  .mob-login-form-body .cookieboot-footer 
  {
    margin-top: 30px;
    text-align: center;
    display: none;
  }
  .mob-login-form-body a{
    color: #38c;
  }
  .mob-login-form-body .ui-select 
  {
    width: 300px !important;
  }
  .ui-mini {
      font-size: 12.5px;
  }
  .ui-select .ui-btn.ui-btn-a{
    background-color: #f6f6f6;
    border:1px solid #ddd;
    color: #333;
    text-shadow: 0 1px 0 #f3f3f3;
    border-radius: 2px;
    padding-bottom: 7.5px;
    padding-top: 7.5px;
    font-size: 14px;
  }
  .ui-select .ui-btn select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 1.5em;
    min-height: 100%;
    height: 3em;
    max-height: 100%;
    outline: 0;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    filter: Alpha(Opacity = 0);
    opacity: 0;
    z-index: 2;
}
  .ui-select .ui-btn select {
    appearance: none;
    padding: 8px;
}
    .ui-hidden-accessible
    {
      display: none;
    }
    .ui-btn-icon-right{
      position: relative;
    }
    .ui-btn-icon-right::after
    {
      content: "";
      position: absolute;
      background-image: url("icons-xam-36.png");
      background-size: 432px 18px !important;
      width: 17px;
      height: 20px;
      right: 13px;
    }
    .ui-icon-xam-arrowd::after {
        background-position: -396px -0 !important;
    }
    .mob-login-form-body .inputWithIcon .toggle-password
    {
      right: 15px;
      padding: 0px 8px;
    }
}
@media screen and (min-width:992px) {
  .mobile-login
  {
    display: none;
  }
}
