*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

body{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.navbar{
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 1000;
}

.home-navbar {
  background-color: transparent;
}

.home-navbar.scrolled {
  background-color: #000;
}

.navbar ul{
  width: 90%;
  display: flex;
  margin: 0 auto;
  padding: 15px 0;
  justify-content: space-between;
  align-items: center;
}

nav ul li{
  list-style: none;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
}

nav ul li a, nav ul li a:visited, nav ul li a:active{
  text-decoration: none;
  color: #fff;
}

nav ul .web-name{
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.web-name img{
  border-radius: 50%;
  width: 35px;
  height: auto;
  margin-right: 0.3rem;
}

.nav-item a {
  display: inline-flex;
  align-items: center; 
  gap: 8px;
}

.right-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.todo-profile{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.proflie{
  display: flex;
  justify-content: center;
}

.avatar img{
  border-radius: 50%;
  width: 35px;
  height: auto;
}

.login-signup{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.signup-btn{
  padding: 8px 20px;
  border-radius: 20px;
  background: #007bff;
  color: #fff;
}

.sidebar-menu {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Dashboard Styles */
.dashboard{
  display: flex;
  align-items: stretch;
  height: 100vh;
}

.sidebar{
  width: 25%;
  padding: 50px 30px;
  background-color: #f7f7f7;
  margin-top: 60px;
  height: 100vh;
}

.sidebar a{
  text-decoration: none;
  color: #000;
}

.close-sidebar {
  display: none;
}

.profile-display{
  width: 75%;
  margin: 0 auto;
}

.avatar-username,  .avatar-username a{
  display: flex; 
  align-items: center;
  gap: 10px;
}

.avatar-username img{
  width: 40px;
  align-items: center;
}

.avatar-username .username{
  font-size: 1.5rem;
  font-weight: 700;
}

.edit-profile-btn{
  width: 100%;
  background-color: #007bff;
  text-align: center;
  border-radius: 25px;
  padding: 8px;
  margin-top: 20px;
}

.edit-profile-btn a{
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.3rem;
}

.menu {
  display: flex;
  flex-direction: column;
  width: 85%;
  margin: 30px auto;
  gap: 1rem;
}

.menu li {
  list-style: none;
  border: 1px solid transparent; 
  border-radius: 15px;
}

.menu li a{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 10px 20px;
}

.menu li:hover{
  border: 1px solid #999;
  border-radius: 15px;
  cursor: pointer;
}

.menu li.active a {
  background-color: #007bff;
  color: #fff;
  border-radius: 15px;
}

.menu-logo{
  display: flex;
  align-items: center;
}

.menu-logo img{
  width: 30px;
  height: auto;
}

.menu-description {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.menu-description .menu-text, .menu-description .menu-count{
  font-weight: 700;
  font-size: 1.1rem;
}

.logout-btn {
  width: 75%;
  background-color: #f43731;
  text-align: center;
  border-radius: 25px;
  padding: 8px;
  margin: 180px auto 10px;
}

.logout-btn a{
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.3rem;
}

/* Main Content Style */
.main-content{
  width: 75%;
  padding: 50px 40px;
  height: 100vh;
  margin: 60px 0;
}

.main-content h2 {
  font-size: 2rem;
}

.main-content .controls {
  margin: 20px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls .controls-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}

.search-container, .priority-dropdown, .tag-dropdown, .new-task-btn {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
}

.search-container button{
  display: flex;
  align-items: center;
  background-color: transparent;
  margin-right: 10px;
  border: none;
}

.search-container button i, .priority-dropdown i {
  color: #474747;
}

.search-container input {
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-container input::placeholder{
  color: #474747;
}

.priority-dropdown, .tag-dropdown {
  position: relative;
  display: inline-block;
}

.priority-dropdown span, .tag-dropdown span {
  margin: 0 20px 0 8px;
}

.priority-dropdown:hover {
  cursor: pointer;
}

.tag-dropdown i {
  vertical-align: middle;
}

.tag-dropdown:hover{
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  text-align: center;
  max-height: 300px; 
  overflow-y: auto;
}

.dropdown-menu li {
  padding: 10px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

.clear-filters-btn {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  border: 1.5px solid #999;
  padding: 10px 22px;
  transition: all 0.3s ease;
}

.clear-filters-btn:hover {
  cursor: pointer;
  border: 1.5px solid #000;
}

.new-task-btn {
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  transition: all 0.3s ease;
}

.new-task-btn:hover{
  background-color: #0069d9;
  cursor: pointer;
}

/* Tasks Table Styles */
.task-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.task-table th, .task-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.task-table thead th {
  background-color: #f8f9fa;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #6c757d;
}

.task-table tbody tr:hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.task-title.completed {
  text-decoration: line-through;
  color: #999;
}

.priority {
  display: inline-block;
  padding: 3px 12px 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: capitalize;
}

.priority.low {
  background-color: #e3fcec;
  color: #28a745;
}

.priority.normal {
  background-color: #e7f1ff;
  color: #007bff;
}

.priority.high {
  background-color: #fef4d6;
  color: #ffa200;
}

.priority.urgent {
  background-color: #ffe8ea;
  color: #dc3545;
}

.task-title-td {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-tag-td {
  width: 140px;
}

.task-tag {
  display: inline-block;
  vertical-align: middle;
  padding: 4px 7px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #f1f1f1;
  color: #5f6265;
  max-width: 120px;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.delete-task-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.delete-task-btn i {
  color: #dc3545;
  font-size: 16px;
}

.task-table input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.task-title.completed {
  text-decoration: line-through;
  color: gray;
}

.completed {
  text-decoration: line-through;
  color: gray;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.page-arrow {
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  color: #474747;
}

.page-arrow.disabled {
  color: #ccc;
  pointer-events: none;
}

.page-input-form {
  display: inline-block;
}

.page-input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.page-input:focus {
  border-color: #007bff;
}

.page-text {
  font-size: 16px;
  color: #474747;
}

/* Modal Style */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-container {
  margin: 15vh auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  width: 600px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.close-btn:hover {
  color: #000;
}

#modalTitle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.task-form-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}

.task-form-items label {
  flex: 1;
  font-size: 1rem;
  color: #555;
}

.task-form-items input,
.task-form-items select,
.task-form-items textarea {
  flex: 2;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
}

.task-form-items textarea {
  height: 80px;
}

#taskCreated {
  border: none;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.modal-buttons button {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#cancelButton {
  background-color: #f0f4f8;
  color: #007bff;
}

#cancelButton:hover {
  background-color: #e8f0fe;
}

#saveButton {
  background-color: #007bff;
  color: #fff;
}

#saveButton:hover {
  background-color: #0056b3;
}

/* Home Style */
.home-container {
  display: flex;
  flex-direction: column ;
  align-items: center;
  justify-content: center;
  position: relative;
}

.background-img{
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2000;
}

.home-hero {
  width: 80%;
  display: flex;
  flex-direction: column ;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 100px auto ;
  padding: 0px;
  position: relative;
  gap: 1.5rem;
}

.home-hero h1{
  font-size: 5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.home-hero a {
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 600;
}

.dashboard-img{
  width: 90%;
  height: auto;
  border: 1px solid #b2b2b2;
  border-radius: 10px;
  margin-top: 20px;
}

.about {
  width: 100%;
  margin: 30px auto 0;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap:1rem; 
}

#about {
  scroll-margin-top: 100px; 
}
 
.short-intro {
  font-size: 1.1rem;
  margin-top: 20px;
}

.rights-info {
  font-size: 0.8rem;
  color: #c2c2c2;
}

.get-in-touch {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.get-in-touch a{
  text-decoration: none;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.get-in-touch a:hover {
  transform: translateY(-5px) scale(1.1);
}

.profile-management-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-management-container {
  width: 700px;
  margin: 100px auto 0;
  padding: 50px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-title{
  text-align: center;
}

.profile-title h1 {
  font-size: 1.8rem;
  color: #111827;
}

.profile-title p {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 10px 0 30px;
}

.edit-username{
  margin-bottom: 25px;
}

.edit-username label,
.edit-password label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #4b5563;
}

.edit-username input,
.edit-password input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease-in-out;
}

.edit-username input:focus,
.edit-password input:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 3px rgba(59, 130, 246, 0.3);
}

.messages,
.password-errors {
  margin-bottom: 25px;
}

.alert, .error-message {
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.messages .success {
  border: 1px solid #a2e3a6;
  background-color: #f5fef2;
  color: #189132;
}

.messages .error,
.error-message {
  border: 1px solid #fca5a5;
  background-color: #fef2f2;
  color: #b91c1c;
}

.error-message {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 10px;
}

.fa-circle-exclamation {
  margin-right: 5px;
}

.password-field-error .password-error-message,
.error-messages .error {
  margin-bottom: 10px;
  color: #dc2626;
  font-size: 0.85rem;
}

.error-messages .error {
  margin-top: 12px;
}

.profile-btn,
.password-change-btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.profile-btn:hover,
.password-change-btn:hover {
  background-color: #2563eb;
}

.profile-btn:disabled,
.password-change-btn:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}

.profile-about {
  margin-top: 130px;
}

/* Login In Style */
.login-body,
.register-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container,
.register-container{
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 500px;
  padding: 50px 30px;
  margin: 100px auto 0;
  animation: fadeIn 0.5s ease-in-out;
}

.login-container img,
.register-container img{
  width: 80px;
  margin: 0 auto 30px;
  display: block;
}

.login-container h1,
.register-container h1{
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.login-container form div,
.register-container form div {
  margin-bottom: 15px;
  text-align: left;
}

.login-container form label,
.register-container form label {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #555;
}

.login-container form input,
.register-container form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: border 0.3s ease;
}

.login-container form input:focus,
.register-container form input:focus {
  border-color: #3b82f6;
  outline: none;
}

.login-container form button[type="submit"],
.register-container form button[type="submit"]{
  background-color: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.login-container form button[type="submit"]:hover,
.register-container form button[type="submit"]:hover {
  background-color: #2563eb;
}

.login-container p,
.register-container p {
  font-size: 0.9rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.login-container p a,
.register-container p a {
  color: #3b82f6;
  text-decoration: none;
}

.login-container p a:hover, .register-container p a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1205px) {
  .hamburger {
    display: block;
  }

  .right-link {
    display: none;
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%; 
    padding: 0;
    border-radius: 0;
    z-index: 1000;
    gap: 0;
  }

  .right-link.show {
    display: flex;
  }

  .right-link .nav-item,
  .todo-profile .nav-item,
  .login-signup .nav-item{
    width: 100%;
    border-radius: 0;
    border: none;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
  }

  .todo-profile,
  .login-signup {
    width: 100%;
    gap:0;
    text-align: center;
  }

  .todo-profile {
    display: flex;
    flex-direction: column;
  }

  .right-link li:hover,
  .right-link li:hover .login-signup  {
    background-color: #fff;
    width: 100%;
  }

  .right-link li:hover .nav-text {
    color: #000;
  }

  .login-signup{
    flex-direction: column;
  }

  .signup-btn{
    border:none;
    background: transparent
  }

  .home-hero{
    margin: 80px auto;
  }

  .home-hero h1{
    font-size: 4rem;
  }

  .home-hero a {
    font-size: 1rem;
  }

  .get-in-touch a {
    font-size: 1.3rem;
  }

  .short-intro {
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .rights-info{
    font-size: 0.7rem;
  }

  /* Dashboard Style */
  .dashboard {
    flex-direction: column;
    height: auto;
  }

  .sidebar {
    display: none;
    width: 300px;
    height: 100%;
    top: 0;
    right: 0;
    padding: 100px 10px 0;
    position: fixed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: transform 0.3s ease-in-out;
  }

  .sidebar.show {
    display: block; 
  }
  
  .main-content {
    width: 100%;
    padding: 30px 15px;
    z-index: 1;
    position: relative;
  }

  .sidebar-menu {
    position: absolute;
    top: 36px; 
    right: 20px;
    padding: 8px 12px;
    background-color: #007bff; 
    color: #fff;
    border: none; 
    border-radius: 5px;
    font-size: 16px; 
    cursor: pointer; 
    z-index: 1100; 
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar-menu:hover {
    background-color: #0056b3;
  }

  .close-sidebar {
    position: absolute;
    top: 36px; 
    right: 20px; 
    background-color: #ff4d4d;
    color: #fff; 
    border: none; 
    border-radius: 5px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .close-sidebar i {
    font-size: 16px;
  }
  
  .close-sidebar:hover {
    background-color: #cc0000;
  }

  .sidebar.show .close-sidebar {
    opacity: 1;
    transform: translateY(0);
  }

  .logout-btn {
    margin: 90px auto 0;
  }

  .controls {
    gap: 15px;
  }

  .controls .controls-left,
  .controls .controls-right {
    justify-content: space-between;
    gap: 0.5rem;
  }

  .search-container input,
  .priority-dropdown,
  .tag-dropdown,
  .clear-filters-btn,
  .new-task-btn {
    font-size: 0.9rem;
  }

  .search-container input {
    width: 60px;
  }

  .priority-dropdown span,
  .tag-dropdown span {
    margin: 0 10px 0 5px;
  }

  .task-table {
    font-size: 0.9rem;
    overflow-x: auto; 
  }

  .pagination {
    font-size: 14px;
    gap: 5px;
  }

  .page-input {
    height: 30px;
  }
}

@media screen and (max-width: 769px)  {
  .nav-text {
    font-size: 0.9rem;
  }

  .web-name a{
    font-size: 1.2rem;
  }

  .web-name img {
    width: 25px;
  }

  .home-hero{
    margin: 70px auto 20px;
    gap: 0.7rem;
  }

  .home-hero h1{
    font-size: 2.5rem;
  }

  .home-hero a {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .about {
    gap: 0;
  }

  .get-in-touch {
    gap: 1rem;
  }

  .get-in-touch a {
    font-size: 1rem;
  }

  .short-intro {
    margin-top: 5px;
    font-size: 0.7rem;
  }

  .rights-info{
    font-size: 0.6rem;
  }

  /* Login Style */
  .login-container, .register-container {
    width: 400px;
  }

  .login-container img,
  .register-container img {
    width: 50px;
    margin: 0 auto 20px;
  }

  .profile-management-container {
    width: 90%;
  }

   /* Dashboard Style */
   .main-content {
    width: 100%;
   }

   .controls {
    flex-direction: column;
   }

   .controls .controls-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .search-container input {
    flex: 1;
  }
  .search-container input::placeholder {
    color: transparent;
  }
  
  .priority-dropdown,
  .tag-dropdown {
    display: flex;
    justify-content: space-between;
  }

  .controls-right {
    width: 100%;
  }

  .new-task-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .task-table {
    width: 100%; 
    font-size: 14px; 
    border-collapse: collapse;
    overflow-x: auto; 
  }

  .task-table thead {
    display: none;
  }

  .task-table tbody tr {
    display: flex;
    flex-direction: column; 
    border: 1px solid #ddd;
    margin-bottom: 10px;
  }

  .task-table td {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }

  .task-table td:last-child {
    border-bottom: none;
  }

  .task-table td::before {
    content: attr(data-label);
    font-weight: bold;
    flex: 1;
    text-align: left;
  }

  .task-title-td {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .task-title {
    flex: 1;
  }

  .priority {
    padding: 3px 6px;
    font-size: 12px;
    border-radius: 5px;
  }

  .task-checkbox {
    flex: 0 0 auto;
  }

  .delete-task-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #dc3545;
  }

  .modal-container {
    margin: 12vh auto;
    padding: 30px 20px;
    width: 90%;
  }
}

@media screen and (max-width: 481px)  {
  .web-name a{
    font-size: 1rem;
    gap: 5px;
  }

  .web-name img {
    width: 20px;
  }

  .home-hero{
    margin: 55px auto 10px;
    gap: 0.5rem;
  }

  .home-hero h1{
    font-size: 1.6rem;
  }

  .home-hero a {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .dashboard-img {
    margin-top: 10px;
  }

  .get-in-touch a {
    font-size: 0.8rem;
  }

  .short-intro {
    font-size: 0.6rem;
  }

  .rights-info{
    font-size: 0.5rem;
  }

  /* Login Style */
  .login-container, .register-container {
    width: 300px;
  }

  .register-container h1 {
    font-size: 1.5rem;
  }

  .modal-container {
    margin: 15vh auto;
    max-height: 500px;
    overflow-y: scroll;
  }

  .task-form-items {
    flex-direction: column;
    align-items: flex-start;
  }

  .task-form-items input,
  .task-form-items select,
  .task-form-items textarea {
    width: 100%;
  }
}