﻿
.account .validation-summary-errors ul {
  list-style: none;
  padding: 0;
  color: red;
}  

.account .raised-btn {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: 0;
  border: none;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 88px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 2px;
}

  .account .raised-btn:hover {
    opacity: 0.85;
  }

  .account .raised-btn:active {
    background: #454545;
  }

  .account .raised-btn[disabled] {
    pointer-events: none;
    cursor: default;
    opacity: 0.6;
  }

.account.frame {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 0;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.frame-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 0 20px;
}

@media screen and (max-width: 360px) {

  .frame-content {
    padding: 10px 10px 0 10px;
  }
}

.frame-content .content-wrapper {
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
}


.frame-content .title {
  font-size: 18px;
  font-weight: bold;
  color: #454545;
  text-align: center;
  margin: 0;
}

.frame-content .description {
  font-size: 15px;
  color: #888;
  font-weight: 400;
  text-align: center;
  margin: 15px 0 20px 0;
}

.frame-footer {
  flex: 0 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

  .frame-footer .logo {
    max-width: 160px;
  }

.frame-content .form .buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 10px 0;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
}

  .input-wrapper:not(:last-child) {
    margin-bottom: 5px;
  }

  .input-wrapper input {
    background: white;
    border: 1px solid #e0e0e0;
    height: 30px;
    padding: 4px 6px;
    outline: none;
    font-size: 15px;
  }

    .input-wrapper input:focus {
      outline: none;
    }

  .input-wrapper .error {
    font-size: 12px;
    color: #f44336;
    margin-top: 5px;
  }

.confirmAccount-confirmation .raised-btn {
  align-self: center;
}

.resetPassword-confirmation .raised-btn {
  align-self: center;
}

/*Login Page ---------------------------*/
.account.login {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: 0;
  background: #f0f0f0;
}

  .account.login .background-img-wrapper {
    position: absolute;
    left: 0;
    right: 400px;
    bottom: 0;
    top: 0;
    overflow: hidden;
  }

    .account.login .background-img-wrapper img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  
  .account.login .pane {
    position: absolute;
    box-sizing: border-box;
    right: 0;
    bottom: 0;
    top: 0;
    background: white;
    width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -4px 0px 5px 0px rgba(0,0,0,0.3);
  }

    .account.login .pane .logo {
      display: block;
      max-width: 240px;
      margin: 0 auto 60px auto;
    }

    .account.login .pane .other {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      font-size: 12px;
    }

      .account.login .pane .other .remember-me input {
        margin: 0;
      }

      .account.login .pane .other .remember-me span {
        vertical-align: top;
        color: #666;
      }

      .account.login .pane .other .forgot-password {
        text-decoration: none;
        color: #3371fd;
      }

    .account.login .pane .raised-btn {
      margin-top: 20px;
      align-self: flex-start;
    }

@media screen and (max-width: 400px) {
  .account.login .pane {
    left: 0;
    width: auto;
    padding: 10px;
    box-shadow: none;
  }

    .account.login .pane .logo {
      max-width: 200px;
      margin: 0 auto 40px auto;
    }

  .account.login .background-img-wrapper {
    display: none;
  }
}

/*------------------------------------*/
