﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}


/* Modal Container */
.otp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* OTP Card */
.otp-card {
  background: white;
  width: 400px;
  max-width: 90%;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.otp-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.otp-card p {
  margin: 5px 0 15px;
  font-size: 15px;
  color: #333;
}

/* OTP Inputs */
.otp-inputs {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.otp-inputs input {
  width: 60px;
  height: 60px;
  font-size: 24px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* Resend + Email Info */
.resend-text {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.resend-text a {
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
}

.email-info {
  font-size: 13px;
  color: #666;
}

/* Confirm Button */
.cust-otp-confirm-btn {
  width: 100%;
  padding: 15px;
  background-color: #0d4f92;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  margin-top: 20px;
}

.cust-otp-confirm-btn:hover {
  background-color: #093f76;
}

.cust-otp-error {
    border: 1px solid red !important;
}

.input-error {
    border: 2px solid #e62424 !important;
    outline: none;
}


@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#downloadReceiptBtn i {
    animation: pulseIcon 1.5s infinite;
    transition: transform 0.3s ease;
}

    #downloadReceiptBtn i:hover {
        color: #ff0000;
        transform: scale(1.3);
    }
