/* ========================================
   OTR Forms - Unified Clean Style
   ======================================== */

.otr-form {
  background: #fff;
  border-radius: 10px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.otr-row{
    display: flex;
    width: 100%;
    margin: auto !important;
}
.otr-pt-30{
  padding-top: 30px !important;
}
.otr-mr-25{
  margin-right: 25px;
}
.otr-col-2{
  width: 50% !important;
}
.otr-col-3{
  width: 33% !important;
}
.otr-w-30{
width: 30% !important;
}
.otr-w-40{
width: 40% !important;
}
.otr-form h3 {
  color: #193755;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 600;
}

.otr-input {
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}

.otr-input label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

.otr-input select{
  width: 100%;
}

.otr-input input,
.otr-input select {
  padding: 11px 13px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background: #fff;
}

.otr-input input:focus,
.otr-input select:focus {
  border-color: #0594f2;
  outline: none;
}

.otr-input input::placeholder {
  color: #aaa;
}

.otr-checkbox label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.d-flex{
  display: flex;
}
.col-2{
  width: 50%;
}

.otr-forgot {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #0594f2;
  text-decoration: none;
}

.otr-forgot:hover {
  text-decoration: underline;
}

/* Primary button */
.otr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: auto;
  min-width: 160px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #193755, #0594f2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.3s;
}

.otr-btn:hover {
  background: linear-gradient(90deg, #193755, #193755);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
color: white;
}

.otr-btn-full {
  width: 100%;
}

.otr-form .otr-btn {
  width: 100%;
}

/* Country selector fix (no flags) */
.country-select {
  width: 100% !important;
}
#gender {
  width: 100% !important;
}
.otr-error {
  background: #ffe5e5;
  border-left: 4px solid #cc0000;
  padding: 12px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #b10000;
  font-size: 14px;
}

.otr-success {
  background: #e6ffed;
  border-left: 4px solid #0f8b3d;
  padding: 12px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #0f6d2f;
  font-size: 14px;
}

