@import url(/assets/defaults-f19719078b79f687b3527ff88b2c1371e7c5714de86342e371a3d38d36223379.css);
   
 /* header styles ... */
@import url(/assets/header-fb81261878b0da82145ed41a6a858a6ee510e988d402980ef040a7ce7e66fe9e.css);

/* Auth Form */
@import url(/assets/auth-form-ef816c3a168a4ef04162b4bd9e2fe26c7e8d59910d9914c8cc275723184ed408.css);

@import url(/assets/password-input-f32330afaf31f66f6e6745213609197dff32f34932b09a8956a685b269135b5a.css);

/* ... previous CSS classes ... */
@import url(/assets/task-item-0ffe9eecc407fbd795b817ecd75594dd446a252867a0d9748161ccad952064b1.css);
@import url(/assets/user-edit-7f049287c0f5472b129b4dc129e057e49adb663a72ba5bec121d37792e87dc36.css);
@import url(/assets/lists-ae11065e5549058a8e7fa22bd082ede4d3267fc39455de573b76bc10361779c8.css);
@import url(/assets/flash-47e81d0e33321c3f0fbfeef4cf5e3de84f4fb862ddb42ff2b8457326e05fed41.css);
@import url(/assets/temporary-banner-ab091698ca6d8a626e20d6cded50655b20cc1bc8449674a03b3754a57e4445b2.css);
  
@import url(/assets/keyboard-helper-38e3113fc3c139973a02176ba145f0b417998bac22de6126b6f46c755fcc495e.css);
@import url(/assets/copy-link-ec9686a3d09e9fd0cdec9820ebc9f1f98c47f58e991e2e337161a4c3cf3528d8.css);
  

@import url(/assets/focus-preferences-2408f7a58ddc6dfac5ff7938b6a70719169e5ac6228cea01eb6290b4d5fd9996.css);
@import url(/assets/notification-preferences-9ad66d3c66a14ce1f4c541acbceac889df55730b05008f4f5e1eda093df6ca4a.css);
@import url(/assets/delete-confirmation-5a2dd1ed4512d70ee7dfec102c0d5c67e8c616c611bd08d6698dd0cc50bfec64.css);
@import url(/assets/preview-b3e95b6022b52ec8fc384cf2fc506c8f48eda82dafe14ccd202d4c3a9fd0892b.css);
@import url(/assets/pwa-install-b5496696db0d133e36b5356e5e52932ca013f6939e3be47ebc32572271bd1b31.css);
@import url(/assets/datepicker-1797fe5f45a290061f582d67d7fed3165e74edb7378d49e9e4dc422a472fcb4f.css);
@import url(/assets/search-48186740b6823a37ef6d221b9ce63a03b1437832f1a241cc9c13f79bec4927f9.css);
body {

  display: flex;
flex-direction: column;
min-height: 100vh; /* This ensures the container takes at least the full viewport height */
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-background);
    
  }

.focus-mode-form {  
  order: 2;
}
.hidden { 
  display: none !important;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    margin-left: 5px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-light);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--color-white);
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 30px;
}

.slider.round:before {
    border-radius: 50%;
}

  /* home */



.home-content {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-align: left;
}

.text-feature {
  margin-bottom: 1.25rem;
  border-left: 1px solid var(--color-border);
  padding-left: 1.25rem;

}
.text-feature--home {
  width: 50%;
}
.text-feature--terms {
  width: 75%;
}
@media (max-width: 768px) {
  .text-feature--home,
  .text-feature--terms {
    width: 95%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .text-feature--home {
    width: 75%;
  }
  .text-feature--terms {
    width: 75%;
  }
}

@media (min-width: 1025px) {
  .text-feature--home {
    width: 50%;
  }
  .text-feature--terms {
    width: 50%;
  }
}

.text-feature__title {
  font-weight: bold;
  font-size: 1.25rem;
}

.text-feature__description {
  color: #000;
}

.home-actions {
  display: flex;
  position: absolute;
  z-index: 100;
  width: 250px;

  right: 2rem;
  top: -30px;
  box-shadow: 0 2px 4px var(--color-shadow);
  border-radius: 0.5rem;
  padding-top: 2rem;
  background-color: #eff6ff;
  justify-content: center;
  margin-top: 1.25rem;
  flex-direction: row;
}

@media (max-width: 850px) {
  .home-actions {
    width: 100px;
    flex-direction: column;
    right: 2rem;
    padding-top: 1rem;
  }
}

@media (max-width: 560px) {
  .home-actions {
    right: 10px;
  }
}

@media (min-width: 1280px) {
  .home-actions {
    right: 5rem;
  }
}
.content-super { 
  flex: 1 0 auto; 
}
.footer {
  flex-shrink: 0; /* This prevents the footer from shrinking */
  padding-bottom: 10px;
  width: 100%;
  padding-top: 1rem;
  text-align: center;
}
.footer__link {
  text-decoration: underline;
  margin-right: 2rem;
  margin-left: 1rem;
}
.footer__copyright {
  margin-right: 1rem;
}
.auth-form__button {
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  margin: 0.5rem 0.75rem 1rem 0.5rem;
  white-space: nowrap;
  cursor: pointer;  
  text-align: center;
  color: var(--color-white) !important;
}

@media (max-width: 850px) {
  .auth-form__button {
    padding: 1rem 0.5rem;
    margin: 0rem 0.5rem 0.5rem 0.5rem;
  }
}


/* task item actions */

.background-video {
  position: absolute;
  right: -10%; /* Shift the video to the right so that only half is visible */
  height: 400px; /* Set the desired height */
  width: auto; /* Maintain aspect ratio */
  object-fit:contain; /* Ensures the video covers the area without distortion */
  z-index: 0; /* Places the video behind the content */
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
}
/* Hidden Checkbox */
.video-toggle-checkbox {
  display: none;
}

/* Video Container Styling */
.video-container {
  position: absolute;
  top: 50%;
  right: 0; /* Aligns the container to the right edge */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 2; /* Ensure the container is above the background */
  transition: transform 0.5s ease; /* Smooth sliding effect */
}

/* Handle Styling */
.video-toggle-handle {
  width: 30px;
  height: 400px; /* Match the video height */
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: transform 0.5s ease; /* Smooth rotation */
}

/* Handle Hover Effect */
.video-toggle-handle:hover {
  background-color: rgba(0, 0, 0, 0.7);
}


/* Sliding Effect When Checkbox is Checked (Video Hidden) */
.video-toggle-checkbox:checked ~ .video-container {
  transform: translateX(100%); /* Slides the container out to the right */
}

/* Adjust Handle Rotation When Video is Hidden */
.video-toggle-checkbox:checked ~ .video-container .video-toggle-handle {
  transform: rotate(180deg); /* Rotates the handle icon */
}

/* Ensure Home Content is Above the Video Container */
.home-content {
  position: relative;
  z-index: 1; /* Ensures content appears above the video container */
  /* Add any additional styling as needed */
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .background-video {
    height: 300px; /* Reduce video height */
    min-width: 600px; /* Adjust to ensure partial visibility */
  }

  .video-toggle-handle {
    width: 25px;
    height: 300px; /* Match reduced video height */
  }

  /* Adjust handle rotation translation for smaller screens */
  .video-toggle-checkbox:checked ~ .video-container .video-toggle-handle {
    transform: rotate(180deg); /* Maintain rotation */
  }
}

/* Media Query for Larger Screens */
@media (min-width: 1200px) {
  .background-video {
    min-width: 1000px; /* Ensure more of the video extends off-screen */
  }

  .video-toggle-handle {
    height: 400px; /* Maintain original height */
  }
}

