/*
 * COPYRIGHT - CUBIC TRANSPORTATION SYSTEMS ("CUBIC"). ALL RIGHTS RESERVED.
 *
 * Information Contained Herein is Proprietary and Confidential.
 * The document is the property of "CUBIC" and may not be disclosed,
 * distributed, or reproduced without the express written permission of
 * "CUBIC".
 */

/* ==========================================================================
 * Verification Page Elements
 * ========================================================================== */

/* Fade effect for buttons, spinner, and error messages */
.fade {
  transition: opacity 0.5s ease-out;
}

/* Style for verification error messages */
.verifyError {
  color: red;
}

/* Style for the message container (used for error and success messages) */
#messageContainer {
  margin: 20px auto;
  max-width: 600px;
  text-align: center;
  font-size: 16px;
}

/* Style for the verification button */
#verifyButton {
  display: none; /* toggled via JS */

  margin-left: 5px;
  margin-right: 5px;
  margin-top: 16px;
  margin-bottom: 5px;

  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
  padding-bottom: 0;

  height: 36px;

  font-size: 14px;
  line-height: 21px;
  cursor: pointer;
  background-color: rgb(87, 62, 192);
  color: white;
  border: 0 solid white;
  border-radius: 18px;
}

/* Spinner element to indicate processing */
#spinner {
  display: none; /* hidden by default, shown by JS when needed */
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 10px auto;
}

/* Animation keyframes for the spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}