* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif !important;
    height: 100vh;
    background-size: cover;
    background-image: url('../../UserProfileImg/login-bg.jpg') !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sign {
    font-size: 20px;
    color: #d0a10e !important;
}
.outer_logo{
    width:233px;
}

.forgot {
    margin-top: 16px;
    font-size: 20px;
}
.userimage {
    position: fixed;
    margin: 0 auto;
    left: 45% !important;
    right: 50%;
    top: 50%;
    bottom: 50%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    height: 90px;
    width: 200px;
    background-color: #ecebeb;
    padding: 0 0 0 0;
}
.coming-soon-container {
    text-align: center;
    color: white;
    /* background: #3b2d2c; */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgb(0 0 0 / 36%);
    animation: fadeIn 2s ease-in-out;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    /* background-image: url('../../UserProfileImg/login-bg1.jpg'); */
    background: #000000a6;
    overflow:hidden;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.heading-main {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 0 10px #007a99;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f1f1f1;
}

p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-buttons {
  margin-bottom: 20px;
}

.btn, .btn-outline {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.btn {
  background-color: #28a745;
  color: white;
}

.btn:hover {
  background-color: #218838;
}

.btn-outline {
  background: transparent;
  color: #28a745;
  border: 2px solid #28a745;
}

.btn-outline:hover {
  background-color: #28a745;
  color: white;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  text-decoration: none;
  margin: 0 10px;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #28a745;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .coming-soon-container {
    padding: 40px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    width: 120px;
  }

  .btn, .btn-outline {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
  
}

@media screen and (max-width: 480px) {
  .coming-soon-container {
    padding: 30px;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.9rem;
  }

  .logo {
    width: 100px;
  }

  .btn, .btn-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1rem;
  }
}

/* Specific media query for landscape mode on mobile devices */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .coming-soon-container {
    padding: 20px;
    width: 95%;
    max-height: 80vh; /* Ensure it fits within the shorter height */
    overflow-y: auto; /* Enable scrolling if content overflows */
  }

  .logo {
    width: 100px;
    margin-bottom: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn, .btn-outline {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 676px) {
    .userimage {
        position: fixed;
        margin: 0 auto;
        left: 28% !important;
        right: 50%;
        top: 50%;
        bottom: 50%;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 5px;
        height: 90px;
        width: 200px;
        background-color: #ecebeb;
        padding: 0 0 0 0;
    }
   
}