/* line 1, app/assets/stylesheets/sessions.scss */
.login-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* line 11, app/assets/stylesheets/sessions.scss */
.login-header {
  text-align: center;
  margin-bottom: 30px;
}

/* line 15, app/assets/stylesheets/sessions.scss */
.login-header h2 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 8px;
}

/* line 21, app/assets/stylesheets/sessions.scss */
.login-header p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
}

/* line 28, app/assets/stylesheets/sessions.scss */
.login-step {
  animation: fadeIn 0.3s ease-in;
}

/* line 32, app/assets/stylesheets/sessions.scss */
.form-group {
  margin-bottom: 20px;
}

/* line 35, app/assets/stylesheets/sessions.scss */
.form-group label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 8px;
  display: block;
}

/* line 43, app/assets/stylesheets/sessions.scss */
.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

/* line 50, app/assets/stylesheets/sessions.scss */
.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

/* line 57, app/assets/stylesheets/sessions.scss */
.email-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  gap: .5rem;
}

/* line 67, app/assets/stylesheets/sessions.scss */
.email-input-wrapper input {
  flex-grow: 1;
}

/* line 71, app/assets/stylesheets/sessions.scss */
.email-input-wrapper button {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 2em;
  border: none;
  border-radius: .5rem;
  background: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 85, app/assets/stylesheets/sessions.scss */
.email-input-wrapper button:hover {
  background: #0056b3;
}

/* line 89, app/assets/stylesheets/sessions.scss */
.email-input-wrapper button:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

/* line 97, app/assets/stylesheets/sessions.scss */
.btn-microsoft {
  background: #0078d4;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

/* line 111, app/assets/stylesheets/sessions.scss */
.btn-microsoft:hover {
  background: #106ebe;
  color: white;
  text-decoration: none;
}

/* line 117, app/assets/stylesheets/sessions.scss */
.btn-microsoft i {
  margin-right: 8px;
}

/* line 123, app/assets/stylesheets/sessions.scss */
.btn-primary {
  background: #007bff;
  border: 2px solid #007bff;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* line 131, app/assets/stylesheets/sessions.scss */
.btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

/* line 138, app/assets/stylesheets/sessions.scss */
.btn-block {
  width: 100%;
}

/* line 142, app/assets/stylesheets/sessions.scss */
.btn-link {
  background: none;
  border: none;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  margin-top: 16px;
}

/* line 152, app/assets/stylesheets/sessions.scss */
.btn-link:hover {
  color: #0056b3;
}

/* line 158, app/assets/stylesheets/sessions.scss */
.sso-info {
  text-align: center;
  margin-bottom: 20px;
}

/* line 162, app/assets/stylesheets/sessions.scss */
.sso-info p {
  color: #6c757d;
  margin-bottom: 16px;
  font-size: 14px;
}

/* line 169, app/assets/stylesheets/sessions.scss */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* line 174, app/assets/stylesheets/sessions.scss */
.form-check-input {
  margin-right: 8px;
  margin-top: 0;
}

/* line 179, app/assets/stylesheets/sessions.scss */
.form-check-label {
  font-size: 14px;
  color: #495057;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 191, app/assets/stylesheets/sessions.scss */
.alert {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid transparent;
}

/* line 198, app/assets/stylesheets/sessions.scss */
.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* line 204, app/assets/stylesheets/sessions.scss */
.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
