
input[type=text]:read-only {
  width: calc(100% - 40px);
}

/* Full-width input fields */

input[type=text], input[type=file], input[type=password], input[type=email] {
  width: 100%;
  padding: 10px 15px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #343a40;
  font-family: Arial, Helvetica, sans-serif;
}

label{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2em;
    font-weight: 300;
    line-height: 1.7em;
    color: #343a40;
}

h2 {
  text-align:center;
  color: #343a40;
}

#LRimage:hover{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.loginbutton{
  background-color: #343a40;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  }
  .loginbutton:hover{
    opacity: 0.8;
  }

/* Set a style for all buttons */
.nav-link{
  cursor: pointer;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 3px 0 0px 0;
  position: relative;
}

.avatar {
  width: 50%;
  border-radius: 5%;
  margin-top: 20px;
  margin-bottom: 10px;
}
.LRcontainer {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 10px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 750px;
}

/* The Close Button (x) */
.X {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.X:hover,
.X:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}
.input-group {
  display: table;
}

.input-group-button {
  width: 1%;
  vertical-align: middle;
}

input:required {
  background-color: #921C2120;
}

.copyButton {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: bold;
  line-height: 2.5;
  color: #333;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
}

.copyButton:hover {
  box-shadow: dodgerblue;
  -webkit-box-shadow: inset 0px -2px 19px -5px rgba(0,0,0,0.75);
  -moz-box-shadow: inset 0px -2px 19px -5px rgba(0,0,0,0.75);
  box-shadow: inset 0px -2px 19px -5px rgba(0,0,0,0.75);

}

.clippy {
  margin-top: -3px;
  position: relative;
  top: 3px;
  width: 26px;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
}

.clippy:hover {
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}

.formSpinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  font-size: 30px;
  z-index: 10;
}


/* The message box is shown when the user clicks on the password field */
.message {
  display: none;
  position: relative;
  padding: 5px;
  margin-top: 10px;
}

.message > p {
  padding: 10px 35px;
  font-size: 16px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "\2714";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "\2716";
}
