
    /* Custom CSS */
	
	footer {
  flex: 0 0 auto;
}
	


    #main-content {
      flex: 1;
      padding-bottom: 200px;
      margin: 0 auto;
      text-align: center;
    }

    #main-content h1 {
      color: #000000;
      margin: 0 auto;
    }
	
	body {
	min-height: 100vh;
    display: flex;
    flex-direction: column;
	}

    footer {
      flex-shrink: 0;
	  margin-top: auto;
    }

    .btn-custom {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .btn-custom button {
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      width: 328px;
      height: 44px;
      background: #FFFFFF;
      border: 3px solid #000000;
      box-shadow: 1px 3px 6px #AFAFAF;
      border-radius: 20px;
    }

    .btn-learn {
      margin-top: 40px;
    }

    .btn-custom button:focus,
    .btn-custom button:active {
      outline: none !important;
      box-shadow: none !important;
    }

    .btn-custom button:focus {
      border-color: #000000 !important;
    }

    .dont-have-account {
      font-family: 'Roboto';
      font-style: normal;
      font-weight: 700;
      font-size: 12px;
      line-height: 14px;
      color: #000000;
      text-align: center;
      margin-top: 25px;
    }

    .dont-have-account a {
      color: #000000;
      text-decoration: none;
    }

    .dont-have-account a:hover {
      text-decoration: underline;
    }
	

    /* Custom CSS */
    #cue-section {
      position: absolute;
      width: 581px;
      height: 376px;
      left: 25%;
      background: rgba(255, 255, 255, 0.75);
      border: 3px solid #005B08;
      border-radius: 10px;
      padding: 20px;
	  margin-top: 10px;
    }

#cue-section h2 {
  color: #000000; /* Set the color of the entire heading to black */
}

    #cue-section .cue-text {
      color: #005B08;
    }
#cue-section ul {
  list-style-type: disc; /* Use disc bullets */
  text-align: left; /* Align the list items to the left */
  padding-left: 20px; /* Add left padding to create indentation */
}
.section {
	flex: 1;
}

@media (max-width: 768px) {
  #cue-section {
	position: relative;
    max-width: 100%;
	left: 0%;
  }
  #main {
    width: 100%;
  }
   .close-button {
    padding: 10px;
	margin-right: -10px;
  }
}

.close-button {
  float: right;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  box-shadow: 1px 3px 6px #AFAFAF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #005B08;

}

.close-button:hover {
  background: #005B08;
  color: #FFFFFF;
  cursor: pointer;
}
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 50px;
        }


        .profile-info {
            font-size: 16px;
            text-align: center;
        }

        .profile-info label {
            font-weight: bold;
        }

        .login-button {
            margin-top: 20px;
        }