/*
	FileName	:	style.css
	Description	:	Contains the customized styles required excluding the already exisitng styles.
	DateCreated	:	11 Sept, 2009
	Author		:	mf
*/
/*Style to display error and required fields in UI in red color*/
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #1A2B4C; /* Dark Blue */
  --accent-color: #13adab;  /* Gold */
  --text-color: #333333;
  --background-color: #FFFFFF;
  --light-gray: #F5F5F5;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--text-color);
}
header {
  position: sticky;
  top: 0;
  /* background-color: var(--primary-color); */
  background: linear-gradient(to right, #FFFFFF, #1A2B4C);
  color: var(--background-color);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
nav a {
  color: var(--background-color);
  margin: 0 0.5rem;
  text-decoration: none;
}
.btnClassHome {
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
section {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: auto;
}
h1, h2 {
  margin-top: 0;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.column {
  flex: 1;
  min-width: 250px;
}
iframe {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  nav {
    margin-top: 1rem;
  }
}
.logo {
  max-width: 100%;
  height: auto;
}
.logo-container {
  max-width: 470px;
  width: 100%;
}

.headingTitle,
.h2Title {
  text-align: center;
  margin-bottom: 1rem;
}

.register-prompt {
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.form-actions {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btnLogin {
  padding: 0.75rem;
  background-color: #13adab;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .login-container {
    max-width: 400px;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 0px;
    box-shadow: none;
  }

  .btnLogin {
    width: 80%;
    font-size: 0.9rem;
  }
}

.login-container {
  max-width: 480px;
  margin: 3rem auto; /* Adds vertical space above and below */
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .login-container {
    max-width: 400px;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 0px;
    box-shadow: none;
  }

  .form-group input[type="text"],
  .form-group input[type="password"] {
    width: 80%;
    padding: 0.5rem;
    font-size: 0.95rem;
  }

  .btnLogin {
    width: 80%;
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 400px;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 0px;
    box-shadow: none;
  }

  .form-group input[type="text"],
  .form-group input[type="password"] {
    width: 80%;
    padding: 0.4rem;
    font-size: 0.85rem;
  }

  .btnLogin {
    width: 80%;
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
.logo-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-wrapper .logo {
  max-width: 200px;
  height: auto;
}
/* Signup Page CSS */
.join-container {
  max-width: 480px;
  margin: 2rem auto;
  /* padding: 2rem; */
  background: #f9f9f9;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
  width: 100%;
  padding: 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.form-group.checkbox label {
  font-weight: normal;
}

.form-group a {
  color: #13adab;
  text-decoration: none;
}

.btn-primary {
  width: 100%;
  padding: 0.75rem;
  background-color: #13adab;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-primary:hover {
  background-color: #109090;
}

/* Responsive Design */
@media (max-width: 768px) {
  .join-container {
    padding: 1.5rem;
    margin: 1.5rem;
  }

  .btn-primary {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
}

@media (max-width: 480px) {
  .join-container {
    padding: 1rem;
    margin: 1rem;
  }

  .btn-primary {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

/* Base styles - desktop first or mobile first, depending on your approach */

/* Make sure content area doesn't overflow */
.content-area {
  max-width: 100%;
  padding: 20px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Ensure images or iframes inside content don't overflow */
.content-area img,
.content-area iframe {
  max-width: 100%;
  height: auto;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .content-area {
    padding: 15px;
    font-size: 0.95rem;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .content-area {
    padding: 25px;
    font-size: 1rem;
  }
}

/* Desktop Styles */
@media (min-width: 1025px) {
  .content-area {
    padding: 30px 100px;
    font-size: 1.05rem;
  }
}
input, label {
  margin-bottom: 10px;
}
.error {
  color: red;
  font-size: 0.9em;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap; /* allows wrapping if needed on small screens */
  font-size: 0.95rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--accent-color); /* your brand gold */
  text-decoration: underline;
}
footer {
  background-color: #1A2B4C;
  color: white;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-navigation, .footer-contact-info {
  flex: 1 1 250px;
}

.footer-navigation ul {
  list-style: none;
  padding: 0;
}

.footer-navigation li {
  margin-bottom: 8px;
}

.footer-navigation a, .footer-contact-info a {
  color: #13adab;
  text-decoration: none;
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
}

.copy-right {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-navigation, .footer-contact-info {
    width: 100%;
  }

  .copy-right {
    padding-top: 1rem;
  }
}
@media (min-width: 1200px) {    
  .paraHeadingStyle h2 {
      font-size: 1.1rem;
      color: red;
  }
}
.mb-23 {
  margin-bottom: 23px;
}
.custom-ol li::marker {
  font-size: 18px;
}

.btnCustom {
  width: 15%;
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #0b5ed7 !important;
  border: 1px solid #0b5ed7 !important;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: .25rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary-custom {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.welcome-block a {
  font-weight: 600 !important;
  color: #14aeab !important;
  text-decoration: none !important;
}
.anchorCSS {
  color: #14aeab !important;
  text-decoration: none !important;
}
b, strong {
  font-weight: bolder !important;
    font-size: 22px;
}
.welcome-block p {
  font-size: 22px !important;
}
