/* Home Page  ----------------------------> */ 






html {
  height: 100%;
  width: 100%;

}

body {
  font-family: "pt-sans", sans-serif;
  font-weight: 400;
  font-style: normal; margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
}

header {

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

header .logo {
  height: 50px;
}

header nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #d6d6d6;
  font-weight: bold;
}

header nav a:hover {
  color: #7b219f;
}

main {
  padding: 20px;
}

.info-section {
  padding: 40px;
  background-color: #fffffc;
}

.info-section h1 {
  font-family: "pt-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.info-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.info-section button {
  padding: 10px 20px;
  background-color: #ffda77;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.info-section button:hover {
  background-color: #e0ad3a;
}

.start-section {
  padding: 40px;
  background-color: #ede0f0;
  border-radius: 15px;

}

.start-section button {
  padding: 20px 40px;
  background-color: #ffda77;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.start-section button:hover {
  background-color: #e0ad3a;
}

footer {
  background-color: #7C558A

  ;
  color: #fff;
  padding: 20px 0;
  text-align: left;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
}

.footer-section {
  flex: 1;
  padding: 10px;
}

.footer-section h2 {
  font-family: "pt-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  font-size: 18px;
  color: #ffda77;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-section ul li a:hover {
  color: #ffda77;
}

.social-links {
  display: flex;
}

.social-links a {
  margin-right: 10px;
}

.social-links img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #444;
  margin-top: 20px;
  color: #ffffff;
}

.content-wrapper {
    margin: 0 auto;
    max-width: 960px;
}







/* Login Page  ----------------------------> */ 










.image2 {
  position: absolute; /* Keeps the image fixed relative to the .left1 container */
  top: 170px; /* Adjust as needed */
  left: 30px; /* Adjust as needed */
  width: 280px;
  height: 160px;
  z-index: 2; /* Ensures the image appears above the background */
}

.body2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fff; /* Corrected color code */
  margin: 0;
  font-family: 'Poppins', sans-serif; /* Apply Poppins font to the body */
}

.container1 {
  display: flex;
  border: 2px solid #f7e5b7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.left1 {
  background-color: #fff5d8;
  width: 300px;
  height: 600px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative; /* Ensures the image is positioned relative to this container */
  z-index: 1; /* Ensures it appears above other content */
  overflow: visible; /* Ensures content is not clipped */
}

.left1 img {
  width: 270px;
  margin-bottom: 0; /* Removed fixed margin-bottom */
}

.left1 p {
  color: #ecb7da;
  font-size: 16px;
  text-align: center;
  margin-top: 150px; /* Corrected padding to margin */
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.right1 {
  background-color: #ffd97a;
  width: 500px;
  height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.right1 h2 {
  color: #bf95d3;
  margin-bottom: 20px;
  font-size: 35px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.right1 input {
  width: 80%;
  padding: 10px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  box-sizing: border-box; /* Ensures consistent padding and width */
}

.right1 button {
  width: 81%;
  margin-top: 20px;
  padding: 10px;
  background-color: #f0be4b;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  box-shadow: inset 0 0 10px rgba(172, 135, 23, 0.5);
}

.right1 button:hover {
  background-color: #e0ad3a;
}

/* Social media icons styling */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #9a7600; /* Change color on hover */
}


/* Calculator Page  ----------------------------> */ 





/* Game Page  ----------------------------> */ 

