.text_color {
    color: #8d8d8d !important;
	text-decoration: none !important;
}
.text_color:hover {
    color: #000 !important;
    cursor: pointer !important;
	text-decoration: none !important;
}
.show{
	display: block;
}
.hide{
	display: none;
}
.no-select {
  user-select: none;
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
}
.text-danger{
	color: #dc3545 !important;
}
.error {
  color: #d9534f;
  font-size: 13px;
  margin-top: 5px;
}
.invalid {
  border-color: #d9534f;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hidden {
  display: none;
}

.reset {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  text-align: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  margin: 20px;
}

.reset__title {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #111;
}

.reset__subtitle {
  color: #333;
  margin-bottom: 32px;
  line-height: 1.5;
}

.reset__code-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.reset__code-input {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9ff;
  font-size: 24px;
  text-align: center;
}

.reset__code-input:focus {
  outline: none;
  border-color: #6b21a8;
  box-shadow: 0 0 0 2px rgba(107, 33, 168, 0.1);
}

.reset__password-container {
  position: relative;
  margin-bottom: 24px;
}

.reset__password-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #f8f9ff;
  font-size: 16px;
  box-sizing: border-box;
}

.reset__password-input:focus {
  outline: none;
  border-color: #218838;
  box-shadow: 0 0 0 2px rgba(107, 33, 168, 0.1);
}

.reset__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
}

.reset__button {
  width: 100%;
  padding: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 6px;
  font-weight: 500;
}

.reset__button:hover {
  background: #218838;
}

.reset__link {
  display: block;
  text-decoration: none;
  color: #28a745;
  margin: 12px 0;
  font-size: 15px;
}

.reset__link:hover {
  text-decoration: underline;
}

.form-btn {
    width: 100%;
    background-color: #28a745 !important;
    color: white !important;
    border: none !important;
    padding: 14px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background-color 0.3s, transform 0.2s !important;
}

.btn {
    font-family: "Open Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    max-width: 220px;
    border-radius: 0;
    padding: 5px;
    text-align: center;
    font-weight: bold;
    border: none;
    color: #fff;
    text-decoration: none;
    background: #000;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}
