/**
 * @file
 * Styles for the profile switch confirmation form.
 */

.profile-switch-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px 0;
}

.profile-switch-icon svg {
  width: 48px;
  height: 48px;
}

.profile-switch-title {
  font-family: Ubuntu, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0862AD;
  line-height: 120%;
  margin: 0;
}

.profile-switch-message {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2E2E2E;
  line-height: 140%;
  margin: 0;
}

.profile-switch-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding-top: 8px;
}

@media (max-width: 480px) {
  .profile-switch-actions {
    flex-direction: column-reverse;
  }
}
