/* Overall login form container */
.uo-custom-login {
  background-color: #0d4a63;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

/* Login heading */
.uo-custom-login h2 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
  min-width: 20rem;
}

.uo-custom-login p {
  padding-bottom: initial;
}

/* Login form itself */
#ult-login-form {
  width: 100%;
  max-width: 600px;
}

/* Input labels */
#ult-login-form label {
  display: none;
}

/* Input fields */
#ult-login-form input[type="text"],
#ult-login-form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

/* Username input background */
#user_login {
  background-color: white;
}

/* Password input background */
#user_pass {
  background-color: white;
}

/* Forgot password link */
#ult-login-form .forgot-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* Login button */
#wp-submit, #wp-submit-register {
  background-color: #29b6f6;
  color: white;
  font-size: 1rem;
  padding: 12px;
  width: 100%;
  border: 2px solid white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#wp-submit:hover, #wp-submit-register:hover {
  background-color: #03a9f4;
}

/* Error/success messages */
.uo_error .login-msg {
  margin-bottom: 1rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .uo-custom-login {
    flex-direction: column;
    align-items: flex-start;
  }

  .uo-custom-login h2 {
    margin-bottom: 1rem;
  }

  #ult-login-form {
    width: 100%;
  }
}

.uo-reset-container {
  width: 50%;
  margin-left:auto;
  margin-right:auto;
}

.uo-reset-info {
  text-align: center;
  padding: 20px;
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
}

.uo-reset-success {
  text-align: center;
  color: green;
  font-size: 16px;
  padding: 15px;
}

.uo-reset-response {
  text-align: center;
  color: #d9534f;
  padding-bottom: 10px;
}

.uo-reset-container {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fafafa;
}

.uo-reset-input-group {
  margin-bottom: 20px;
}

.uo-reset-input {
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 20px 5% 0 5% !important;
  width: 90% !important;
  max-width: 90% !important;
  padding: .5em !important;
  min-height: 3em;
  font-size: 1em;
}

.uo-reset-submit-wrap {
  text-align: center;
  padding:20px
}

.uo-reset-submit {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.uo-reset-form-body {
  border-top: 1px solid #ddd;
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}
