﻿/*$text-inactive: #8786b0;*/
/*$line: #8786b080;*/
.conway-wrapper ::selection {
  background: #cc071e;
  color: #FFF;
}

.conway-password-reset {
  font-size: 0.875rem;
  margin: 0;
  margin-top: 1rem;
  text-align: right;
}
.conway-password-reset a {
  color: #5a5f66;
}
.conway-password-reset a:hover {
  color: #cc071e;
}

.conway-form-wrapper {
  transition: all 0.2s ease-in-out;
}
.conway-form-wrapper.hide {
  opacity: 0;
  pointer-events: none;
}
.conway-form-wrapper form {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.conway-form-wrapper form input:not(:placeholder-shown) ~ label {
  display: none !important;
}
.conway-form-wrapper form .conway-input-wrapper {
  width: 100%;
  position: relative;
}
.conway-form-wrapper form .conway-input-wrapper.show label {
  display: block;
}
.conway-form-wrapper form .conway-input-wrapper input:focus ~ label {
  display: none;
}
.conway-form-wrapper form .conway-input-wrapper label {
  position: absolute;
  top: 18px;
  left: 15px;
  color: #83878d;
  pointer-events: none;
  font-weight: 500;
}
.conway-form-wrapper form .conway-input-wrapper label span {
  position: absolute;
}
.conway-form-wrapper form .conway-input-wrapper input {
  height: 55px;
  padding: 18px 15px;
  border: none;
  border-radius: 0;
  outline: none;
  background: #e9ecef;
  border: 1px solid transparent;
  color: #2a2e38;
  width: 100%;
  font-weight: 500;
}
.conway-form-wrapper form .conway-input-wrapper input.invalid {
  border-color: #cc071e;
}
.conway-form-wrapper form .conway-input-wrapper input.valid {
  border-color: transparent !important;
}
.conway-form-wrapper form .conway-input-wrapper .validation-message {
  color: #cc071e;
}
.conway-form-wrapper form .conway-input-wrapper .validation-message ~ .conway-password-reset {
  margin-top: 0rem;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #e9ecef inset !important;
  -webkit-text-fill-color: #303539;
}
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #e9ecef inset !important;
}

.conway-title-container {
  padding-bottom: 2rem;
  text-align: left;
}
.conway-title-container h1 {
  font-weight: 600;
  font-size: 1.75rem;
  color: #cc071e;
  margin-bottom: 1rem;
}
.conway-title-container h1 ~ p {
  color: #5a5f66;
}

.conway-red {
  color: #cc071e;
  font-weight: 500;
}

.conway-button {
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 12px 30px;
  margin: 0;
  position: relative;
  border-radius: 60px;
  background: #cc071e;
  color: #FFF;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 1rem;
  border: none;
  font-weight: 500;
  text-decoration: none;
}
.conway-button span ~ i {
  font-size: 0.875rem;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}
.conway-button:hover {
  color: #FFF;
  background: #a30316;
}
.conway-button:hover i {
  right: 20px;
}

.conway-button-secondary {
  background: #FFF;
  border: 1px solid #cc071e;
  color: #cc071e;
  justify-content: center;
  font-size: 1rem;
}
.conway-button-secondary i {
  font-size: 1rem;
}
.conway-button-secondary:hover {
  background: #cc071e;
  color: #FFF;
}

.conway-button-ternary {
  background: #FFF;
  color: #5a5f66;
  font-size: 1rem;
  padding: 12px 8px;
}
.conway-button-ternary i {
  font-size: 1rem;
  color: #5a5f66;
  right: auto;
  left: 10px !important;
}
.conway-button-ternary:hover {
  background: #FFF;
  color: #cc071e;
}
.conway-button-ternary:hover i {
  color: #cc071e;
  left: 0 !important;
}

.conway-button-icon-left span {
  padding-left: 30px;
}
.conway-button-icon-left i {
  right: auto;
  left: 30px;
}
.conway-button-icon-left:hover i {
  left: 20px;
}

.conway-button-container {
  display: flex;
  gap: 1rem;
  width: 100%;
}
