/* Edit styles here to customize per site - they all use one main color, in this case it's #0a5152 blue */
.button {
  background-color: #0a5152; /* Button background color */
  color: #fff; /* Button text color */
}

input[type="text"],
input[type="password"] {
  border: 1px solid #0a5152; /* Border color of inputs.  Should be the same as the links and button color */
}

* {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

html {
  /*background: url("https://thumbprint.com/four51_images/Hertz/hertz-pattern-bg-3.jpg") no-repeat center center fixed;*/
  height: 100%;
}
body{
	padding: 0;
	margin: 0;
}
.wholeSiteBackground {
  background-color: #edf8f1;
  background-image: url(images/loginbg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.container {
  max-width: 583px;
  width: 100%;
  padding: 50px 20px;
  position: relative;
  margin: 0 auto;
}

.logo {
  max-width: 247px;
  width: 100%;
  padding-bottom: 53px;
  margin: 0 auto;
  display: flex;
}

label {
  display: block;
  color: #0a5152;
  margin-bottom: 12px;
}
.alert-danger {
  color: #ff4b23;
  background-color: #ffb6a6;
  border-color: #ffb6a6;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
}
.alert-primary {
  color: #0a5152;
  background-color: #c5efff;
  border-color: #c5efff;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
}

input[type="text"],
input[type="password"] {
  border-radius: 25px;
  border: 2px solid #0a5152;
  padding: 20px;
  margin-bottom: 35px;
  color: #0a5152;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
}

input:-webkit-autofill {
  background-color: #eee !important;
}
input:focus {
 border-color:#0a5152 ;
 outline: none;
}

.button {
  display: block;
  text-decoration: none;
  border: none;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  text-align: left;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  background-color: #0a5152;
  color: #dbefe2;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 35px;
  padding: 20px;
  min-width: 209px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: url(images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: 40px;
  padding-right: 80px;
 background-position: 90% 50%;
}
.button:hover{
	background-color: #0c2f30;
}

.otherlinks {
  text-align: center;
  margin-top: 15px;
}

.register {
  margin-right: 30px;
}

.forgot{
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 73px;
  color: #0a5152;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  display: block;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.forgot:hover{
  color: #17b1b3;
}
.message {
  text-align: center;
  padding-bottom: 15px;
  color: #0a5152;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
}
.message a {
  text-decoration: underline;
  color: #0a5152;
}

.symphony-logo {
  text-align: center;
}
.symphony-logo p {
  color: #0a5152;
  color: var(--Thumbprint-Teal, #0a5152);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  display: block;
}
@media only screen and (max-width: 1023px) {
	.logo {
  max-width: 200px;
  padding-bottom: 30px;
	}
input[type="text"], input[type="password"]{
	padding: 15px 20px;
	margin-bottom: 20px;
}
}