/* This file contains custom styles to avoid modifying the original Webflow CSS files. */

.password-toggle-btn {
  background: none;
  border: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 14px;
  color: #4a90e2;
}

.loading-spinner {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #4a90e2; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.step {
  display: none;
}
.step.active {
  display: block;
}

.selection-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.selection-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  text-align: left;
}

.selection-button:hover {
  background-color: #e9f2ff;
  border-color: #4a90e2;
}

.selection-button .icon {
  font-size: 24px;
  margin-right: 15px;
}

.selection-button .text-content {
  display: flex;
  flex-direction: column;
}

.selection-button .title {
  font-weight: 600;
  color: #333;
}

.selection-button .description {
  font-size: 12px;
  color: #666;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  text-align: left;
  width: 100%;
}

.two-fa-option {
  display: block;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}
.two-fa-option:hover {
  background-color: #f0f0f0;
}
