.timesheet-login-page {
  display: flex;
  align-items: flex-start;
  justify-content: space-between; /* Ensures space between left and right content */
  padding: 50px 0px 0px 0px;
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  background: radial-gradient(50% 50% at 50% 50%, rgb(22, 139, 255) 0%, rgb(13.44, 42.92, 240.97) 100%);
  flex-wrap: wrap; /* Ensure it doesn’t wrap content */
	height: 100vh; /* Full viewport height remove to not center vertically */
    box-sizing: border-box; /* Ensure padding doesn't add to the height remove to not center vertically */
}


.timesheet-login-page .webinar-wrap {
  /*justify-content: center;
  gap: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;*/
	flex: 1; /* Allow it to grow */
  padding: 0 0px;
  max-width: 70%; /* Full width on smaller screens */
}

.webinar-wrap {
    padding: 0px 70px 0 0;
}

.timesheet-login-page .webinar-wrapper {
  gap: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.timesheet-login-page .webinar {
  position: relative;
  width: 399px;
  height: 22px;
  margin-top: 40px;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #ffe563;
  font-size: 14px;
  letter-spacing: 2.8px;
  line-height: normal;
}

.timesheet-login-page .content-wrapper {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
  margin-right: 20px; /* Ensure content has space on the right */
}

.timesheet-login-page .text-wrapper {
  position: relative;
  width: auto;
  margin-top: -1px;
  background: linear-gradient(180deg, rgb(255, 249.85, 222.96) 0%, rgb(255, 252.62, 240.73) 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
	font-family: "Nunito Sans-ExtraBold", Helvetica;
  /*font-family: "Visby Round CF-Bold", Helvetica;*/
  font-weight: 700;
  color: transparent;
  font-size: 35px;
  letter-spacing: 0;
  line-height: 48px;
	padding-bottom: 8px;
}

.timesheet-login-page .discover-how-the {
  position: relative;
  width: auto;
  height: auto;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.timesheet-login-page .reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /*padding: 14px 24px;*/
  position: relative;
  flex: 0 0 auto;
  background-color: #FFDB98;
  border-radius: 3px;
  overflow: hidden;
	margin-top: 25px;
	
	padding: 10px 20px; /* Smaller padding for smaller screens */
  text-align: center; /* Center align text */
}

.timesheet-login-page .reserve-button:hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    position: relative;
    flex: 0 0 auto;
    background-color: #FFC766;
    border-radius: 3px;
    overflow: hidden;
	animation-timing-function: ease-out;
animation-duration: 300ms;
	
}

.timesheet-login-page .text-wrapper-2 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #002e80;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}


.timesheet-login-page .right-side-content {
  /*display: flex;
  position: relative;
  align-self: flex-end;
  align-items: flex-end;
  width: 598px;
  padding: 0;
  background-image: url(../img/bg-shape-green-circles.svg);
  height: 980px;
  margin-left: 20px; /* Add some margin to separate it from the content wrapper 
  justify-content: flex-end;*/
	  flex: 1; /* Allow it to grow */
  width: 100%;
  padding: 0 0 0 20px;
}

.timesheet-login-page .IMG {
  /*position: absolute;
  width: 598px;
  bottom: 0; 
  right: 0;  
  object-fit: cover;
  top: 100px;*/

    max-width: 500px; /* Set a maximum width for the image */
    height: auto; /* Maintain the aspect ratio */
    margin: 0 auto; /* Center the image vertically */
    display: block;
    transition: opacity 0.5s ease, max-height 0.5s ease; /* Smooth transition */
	  opacity: 1; /* Fully visible */
  	  max-height: 500px; /* Match the size of the image for full visibility */
}

.timesheet-login-page .reserve-button {
  padding: 10px 20px;
  text-align: center;
}


/* Hide the image on smaller screens */
@media (max-width: 768px) {
  .timesheet-login-page .IMG {
    /*display: none;*/
	opacity: 0; /* Make the image invisible */
    max-height: 0; /* Collapse the height smoothly */
	transition: opacity 0.5s ease, max-height 0.5s ease; /* Smooth transition */
  }
}

@media (max-width: 768px) {
  .timesheet-login-page {
    flex-direction: column;
    padding: 20px;
  }

  .timesheet-login-page .reserve-button {
    width: 100%;
  }

  .timesheet-login-page .webinar {
    font-size: 12px;
  }

  .timesheet-login-page .text-wrapper {
    font-size: 32px;
    line-height: 36px;
  }

  .timesheet-login-page .discover-how-the {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .timesheet-login-page {
    flex-direction: column;
    padding: 20px;
  }
	.timesheet-login-page .IMG {
    /*display: none;*/
	opacity: 0; /* Make the image invisible */
    max-height: 0; /* Collapse the height smoothly */
	transition: opacity 0.5s ease, max-height 0.5s ease; /* Smooth transition */
	}
  }






