﻿/*
    This sheet was designed to
    be used to style _Layout.cshtml and _Layout2.cshtml
*/

label {
    font-weight: 500;
}

.newEmail {
  height: 24px;
  border-radius: 0;
  width: 403px;
  padding: 2px;
  border: 1px solid #E3E3E3;
}

/*All buttons and links*/
button, .btn, [type=submit] {
    width: 150px;
    border-radius: 3px;
    border: 1px solid gainsboro;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    padding: 3px 0px;
}

/*All input boxes*/
input[type=text]:not(#passcode, #userID, #curTarget, #appName, #appPassword, #newMfaEmail, #newEmail, #newPassword),
input[type="email"]#profileEmail,
input[type="password"]#profilePassword,
select {
  height: 30px;
  border-radius: 0;
  width: 200px;
  padding: 2px;
  border: 1px solid #E3E3E3;
  margin-top: 3px;
}

input[type=checkbox], input[type=radio] {
    /*Bootstrap defaults 4px margin-top*/
    margin-top: 2px;
    border: 1px solid #E3E3E3;
}

input[type=range] {
  height: 38px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
  background: transparent;
}

  input[type=range]:focus {
    outline: none;
  }

  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #DCDCDC;
    border-radius: 3px;
    border: 0px solid #000000;
  }

  input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #000000;
    height: 31px;
    width: 6px;
    border-radius: 2px;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -12px;
  }

  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #DCDCDC;
  }

  input[type=range]::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0px 0px 0px #000000;
    background: #DCDCDC;
    border-radius: 3px;
    border: 0px solid #000000;
  }

  input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #000000;
    height: 31px;
    width: 6px;
    border-radius: 2px;
    background: #FFFFFF;
    cursor: pointer;
  }

  input[type=range]::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }

  input[type=range]::-ms-fill-lower {
    background: #DCDCDC;
    border: 0px solid #000000;
    border-radius: 6px;
    box-shadow: 0px 0px 0px #000000;
  }

  input[type=range]::-ms-fill-upper {
    background: #DCDCDC;
    border: 0px solid #000000;
    border-radius: 6px;
    box-shadow: 0px 0px 0px #000000;
  }

  input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #000000;
    height: 31px;
    width: 6px;
    border-radius: 2px;
    background: #FFFFFF;
    cursor: pointer;
  }

  input[type=range]:focus::-ms-fill-lower {
    background: #DCDCDC;
  }

  input[type=range]:focus::-ms-fill-upper {
    background: #DCDCDC;
  }

#passcode, #appPassword, #appName, #expiryDate {
  width: 22rem;
  text-align: center;
}

/* Login Begin */
.login-form {
  display: flex;
  flex-flow: column;
}

  .login-form button, input {
    font-weight: unset;
    border: 1px solid black;
  }

.form-control {
  width: 28.125rem;
  display: inline;
}

  .form-control select:hover {
    background-color: #ffb5b7
  }

.form-group {
  margin-bottom: 0.75rem !important;
}

  .form-group label {
    width: 200px;
    display: inline;
    padding-right: 20px;
  }

  .form-group p {
    display: inline;
    padding: 5px;
  }

  .form-group a,
  .form-group button {
    border-radius: 2rem;
  }

  .form-group button:hover,
  .form-group a:hover {
    background-color: #5983ac;
  }

.phone-container {
  max-width: 34.375rem;
  margin: 0.625rem auto;
  padding: 0.625rem;
  text-align: center;
}

.mfa-container {
  max-width: 80%;
  margin: auto;
  padding: 0.75rem;
  text-align: center;
  flex-direction: column;
}

.auth-method {
  display: block;
  padding: 10px 15px;
  margin: 8px auto;
  background-color: #f9f9f9;
  border: 1px solid black;
  border-radius: 3px;
  text-align: left;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
  min-width: 350px
}

  .auth-method:hover {
    background-color: #5983ac;
  }

.card-shawdows {
  /* shadows */
  box-shadow: 15px 20px 18px rgba(0,0,0,0.60);
}

/* Login End */