/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 /* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cfel input[type="email"],
.cfel input[type="number"],
.cfel input[type="search"],
.cfel input[type="text"],
.cfel input[type="tel"],
.cfel input[type="url"],
.cfel input[type="password"],
.cfel textarea,
.cfel select {
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  border: 1px solid #D1D1D1;
  -webkit-border-radius: var(--cfel-border-radius);
  -moz-border-radius: var(--cfel-border-radius);
  -ms-border-radius: var(--cfel-border-radius);
  -o-border-radius: var(--cfel-border-radius);
  border-radius: var(--cfel-border-radius);
  box-shadow: none;
  box-sizing: border-box; 
  width:100% !important;
  font-size:18px;
  background-color: var(--cfel-input-color);
}
/* Removes awkward default styles on some inputs for iOS */
.cfel input[type="email"],
.cfel input[type="number"],
.cfel input[type="search"],
.cfel input[type="text"],
.cfel input[type="tel"],
.cfel input[type="url"],
.cfel input[type="password"],
.cfel textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; 
      }
.cfel textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; 
}
.cfel input[type="email"]:focus,
.cfel input[type="number"]:focus,
.cfel input[type="search"]:focus,
.cfel input[type="text"]:focus,
.cfel input[type="tel"]:focus,
.cfel input[type="url"]:focus,
.cfel input[type="password"]:focus,
.cfel textarea:focus,
.cfel select:focus {
  border: 1px solid #33C3F0;
  outline: 0; 
}
.cfel label,
.cfel legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; 
}
.cfel fieldset {
  padding: 0;
  border-width: 0; 
}
.cfel input[type="checkbox"],
.cfel input[type="radio"] {
  display: inline; 
}
.cfel label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; 
}
.cfel.widecolumn {
    margin: var(--cfel-row-margin);
    padding: 30px 0px;
}

/********* Messages Styles ***********/

.cfel #message {
  background-color: rgba(127,127,127, 0.33);
  padding:20px;
  border-radius:  var(--cfel-border-radius);
}

.cfel #message.error {
  background-color: rgba(255, 78, 78, 0.33);
  border-radius: var(--cfel-border-radius);
}

.cfel #message.updated,
.cfel #message.success {
  background-color: rgba(39, 154, 48, 0.33);
  border-radius: var(--cfel-border-radius);
}

/******** Hide/Show Password ***********/

.hideShowPassword-wrapper, 
.hideShowPassword-wrapper input {
  width: 100% !important;
}
form#adduser p,
form#cfel_loginform p {
    display: flex;
    flex-direction: column;
    margin: 20px 0px;
}
form#cfel_loginform input#user_pass {
    width: 100%;
}
label[for="user_login"] input {
  width: 100%;
  margin-bottom:1em;
}
#login-message {
  padding:10px;
  border-radius:5px;
  margin:1em;
  color:#fff;
}
#login-message.error {
  background: rgb(255, 122, 122);
  border-radius: var(--cfel-border-radius);
}
#login-message.success {
  background: rgb(61, 122, 63);
  border-radius: var(--cfel-border-radius);
}
#cfel_loginform a.lostpass {
  float: right;
}
#password-reset-form #pass1, 
#password-reset-form #pass2 {
  width: 100%;
}

#password-reset-form .resetpass-submit {
  text-align: center;
}

#password-reset-form .description {
  margin: 1em;
}

button.hideShowPassword-toggle.hideShowPassword-toggle-show,
button.hideShowPassword-toggle.hideShowPassword-toggle-hide {
  top: 0% !important;
  height:100%;
  background-color:transparent;
  border:0px;
  margin-top:0px !important;
}