.main {
  background: url('back-main.jpg');
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 100%;
  max-width: 410px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Logo Header */
.logo-area {
  background: #000;
  text-align: center;
  padding: 32px 0;
}

.logo-area h1 {
  margin: 0;
  font-size: 48px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-area span {
  color: #00eaff;
}

/* Form styling */
label {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

label span {
  color: red;
}

.form-control {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #cfcfcf;
  box-shadow: none !important;
}

/* Black Login Button */
.login-btn {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.login-btn:hover {
  background: #111;
}

/* Blue Create ID Button */
.create-btn {
  background: #0f66c3;
  color: white;
  width: 100%;
  padding: 12px;
  display: block;
  text-align: center;
  border-radius: 3px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.create-btn:hover {
  background: #0d57a6;
}
.about-sec {
  padding: 60px 20px;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #153e7e;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #008d50;
}

.about-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-right img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-left h2 {
    font-size: 28px;
  }

  .about-btn {
    margin-top: 10px;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .logo-area h1 {
    font-size: 38px;
  }
  .login-box {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  }
}

.lotus-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  color: #222;
  font-family: Arial, sans-serif;
}

.lotus-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f4c81;
}

.lotus-content h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0f66c3;
}

.lotus-content p {
  font-size: 16px;
  margin-bottom: 12px;
}

.lotus-content ul {
  margin: 10px 0 20px 20px;
}

.lotus-content ul li {
  margin-bottom: 6px;
  font-size: 16px;
}

@media (max-width: 600px) {
  .lotus-content {
    padding: 15px;
  }

  .lotus-content h2 {
    font-size: 22px;
  }

  .lotus-content h3 {
    font-size: 18px;
  }

  .lotus-content p,
  .lotus-content ul li {
    font-size: 15px;
  }
}
.simple-footer {
 background: linear-gradient(to bottom, #4AA28A, #1d413a);
  color: #fff;
  text-align: center;
  padding: 45px 0;
  font-size: 15px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}
