html body {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(90, 109, 109);
}
html body .main-container {
  width: 80%;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/main/background.png);
}
html body .main-container header {
  position: relative;
  background-image: url(../img/main/top_back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 15vh;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1px;
  gap: 1px;
  box-sizing: border-box;
}
html body .main-container header .header-left {
  width: 25%;
}
html body .main-container header .header-left .btn-home {
  background-image: url(../img/main/home_button.png);
}
html body .main-container header .header-center {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
html body .main-container header .header-center .logo-panel {
  display: inline-flex;
  width: 70%;
  height: 65%;
  max-height: 120px;
  background-image: url(../img/main/organizer_logo.png), url(../img/main/logo_panel.png);
  background-size: contain, cover;
  background-position: center center, center;
  background-repeat: no-repeat, no-repeat;
}
html body .main-container header .header-right {
  width: 25%;
}
html body .main-container header .header-right .logout-btn {
  background-image: url(../img/main/logout.png);
}
html body .main-container header .header-left,
html body .main-container header .header-right,
html body .main-container header .header-center {
  height: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-sizing: border-box;
  flex-shrink: 0;
}
html body .main-container header .header-left .header-btn,
html body .main-container header .header-right .header-btn,
html body .main-container header .header-center .header-btn {
  width: 70%;
  height: 70%;
  max-width: 120px;
  max-height: 120px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  background-color: transparent;
}
html body .main-container header .header-left .header-btn:hover,
html body .main-container header .header-right .header-btn:hover,
html body .main-container header .header-center .header-btn:hover {
  transform: scale(1.1);
}
html body .main-container main {
  display: flex;
  flex-grow: 1;
}
html body .main-container main .list-container,
html body .main-container main .event-container,
html body .main-container main .task-container {
  width: 100%;
  justify-content: center;
  align-items: center;
}
html body .main-container main .list-container .top-panel,
html body .main-container main .event-container .top-panel,
html body .main-container main .task-container .top-panel {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 15vh;
  margin-left: 10px;
  box-sizing: border-box;
}
html body .main-container main .list-container .top-panel .back-home-btn,
html body .main-container main .list-container .top-panel .back-events-btn,
html body .main-container main .list-container .top-panel .back-tasks-btn,
html body .main-container main .event-container .top-panel .back-home-btn,
html body .main-container main .event-container .top-panel .back-events-btn,
html body .main-container main .event-container .top-panel .back-tasks-btn,
html body .main-container main .task-container .top-panel .back-home-btn,
html body .main-container main .task-container .top-panel .back-events-btn,
html body .main-container main .task-container .top-panel .back-tasks-btn {
  width: 25%;
  height: 70%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  background-color: transparent;
  background-image: url(../img/main/back.png);
}
html body .main-container main .list-container .top-panel .back-home-btn:hover,
html body .main-container main .list-container .top-panel .back-events-btn:hover,
html body .main-container main .list-container .top-panel .back-tasks-btn:hover,
html body .main-container main .event-container .top-panel .back-home-btn:hover,
html body .main-container main .event-container .top-panel .back-events-btn:hover,
html body .main-container main .event-container .top-panel .back-tasks-btn:hover,
html body .main-container main .task-container .top-panel .back-home-btn:hover,
html body .main-container main .task-container .top-panel .back-events-btn:hover,
html body .main-container main .task-container .top-panel .back-tasks-btn:hover {
  transform: scale(1.1);
}
html body .main-container main .list-container .top-panel #side-panel,
html body .main-container main .event-container .top-panel #side-panel,
html body .main-container main .task-container .top-panel #side-panel {
  position: absolute;
  width: 75%;
  height: 70%;
  left: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(../img/main/right_panel.png);
  border: none;
}
html body .main-container main .list-container .top-panel #side-panel .add-btn,
html body .main-container main .event-container .top-panel #side-panel .add-btn,
html body .main-container main .task-container .top-panel #side-panel .add-btn {
  width: 70%;
  height: 70%;
  border: none;
  cursor: pointer;
  margin-left: 15%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: transparent;
  background-image: url(../img/main/add.png);
  transition: transform 0.2s ease-in-out;
}
html body .main-container main .list-container .top-panel #side-panel .add-btn:hover,
html body .main-container main .event-container .top-panel #side-panel .add-btn:hover,
html body .main-container main .task-container .top-panel #side-panel .add-btn:hover {
  transform: scale(1.1);
}
html body .main-container main .list-container #events-list .event-card, html body .main-container main .list-container #tasks-list .event-card {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/event/event_back_panel.png);
  padding: 15px;
  margin: 10px 0;
}
html body .main-container main .list-container #events-list .event-card h3, html body .main-container main .list-container #tasks-list .event-card h3 {
  margin-left: 10%;
  font-size: 18px;
  color: orangered;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}
html body .main-container main .list-container #events-list .event-card p, html body .main-container main .list-container #tasks-list .event-card p {
  margin-left: 5%;
  margin-right: 3%;
  color: white;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
html body .main-container main .list-container #events-list .event-card .edit-btn,
html body .main-container main .list-container #events-list .event-card .delete-btn,
html body .main-container main .list-container #events-list .event-card .done-btn, html body .main-container main .list-container #tasks-list .event-card .edit-btn,
html body .main-container main .list-container #tasks-list .event-card .delete-btn,
html body .main-container main .list-container #tasks-list .event-card .done-btn {
  margin-left: 5%;
  width: 100px;
  height: 50px;
  border: none;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  transition: transform 0.2s ease-in-out;
}
html body .main-container main .list-container #events-list .event-card .edit-btn:hover,
html body .main-container main .list-container #events-list .event-card .delete-btn:hover,
html body .main-container main .list-container #events-list .event-card .done-btn:hover, html body .main-container main .list-container #tasks-list .event-card .edit-btn:hover,
html body .main-container main .list-container #tasks-list .event-card .delete-btn:hover,
html body .main-container main .list-container #tasks-list .event-card .done-btn:hover {
  transform: scale(1.1);
}
html body .main-container main .list-container #events-list .event-card .edit-btn, html body .main-container main .list-container #tasks-list .event-card .edit-btn {
  background-image: url(../img/event/edit.png);
}
html body .main-container main .list-container #events-list .event-card .delete-btn, html body .main-container main .list-container #tasks-list .event-card .delete-btn {
  background-image: url(../img/event/delete.png);
}
html body .main-container main .list-container #events-list .event-card .done-btn, html body .main-container main .list-container #tasks-list .event-card .done-btn {
  background-image: url(../img/task/done.png);
}
html body .main-container main .list-container #events-list p, html body .main-container main .list-container #tasks-list p {
  color: white;
  text-align: center;
  font-size: large;
}
html body .main-container main .event-container #event-form, html body .main-container main .event-container #task-form,
html body .main-container main .task-container #event-form,
html body .main-container main .task-container #task-form {
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 90%;
}
html body .main-container main .event-container #event-form input, html body .main-container main .event-container #event-form textarea, html body .main-container main .event-container #task-form input, html body .main-container main .event-container #task-form textarea,
html body .main-container main .task-container #event-form input,
html body .main-container main .task-container #event-form textarea,
html body .main-container main .task-container #task-form input,
html body .main-container main .task-container #task-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
html body .main-container main .event-container #event-form input::-moz-placeholder, html body .main-container main .event-container #event-form textarea::-moz-placeholder, html body .main-container main .event-container #task-form input::-moz-placeholder, html body .main-container main .event-container #task-form textarea::-moz-placeholder, html body .main-container main .task-container #event-form input::-moz-placeholder, html body .main-container main .task-container #event-form textarea::-moz-placeholder, html body .main-container main .task-container #task-form input::-moz-placeholder, html body .main-container main .task-container #task-form textarea::-moz-placeholder {
  color: grey;
}
html body .main-container main .event-container #event-form input::placeholder, html body .main-container main .event-container #event-form textarea::placeholder, html body .main-container main .event-container #task-form input::placeholder, html body .main-container main .event-container #task-form textarea::placeholder,
html body .main-container main .task-container #event-form input::placeholder,
html body .main-container main .task-container #event-form textarea::placeholder,
html body .main-container main .task-container #task-form input::placeholder,
html body .main-container main .task-container #task-form textarea::placeholder {
  color: grey;
}
html body .main-container main .event-container #event-form textarea, html body .main-container main .event-container #task-form textarea,
html body .main-container main .task-container #event-form textarea,
html body .main-container main .task-container #task-form textarea {
  min-height: 100px;
}
html body .main-container main .event-container #event-form .save-btn, html body .main-container main .event-container #task-form .save-btn,
html body .main-container main .task-container #event-form .save-btn,
html body .main-container main .task-container #task-form .save-btn {
  width: 200px;
  height: 70px;
  border: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-image: url(../img/event/save.png);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
html body .main-container main .event-container #event-form .save-btn:hover, html body .main-container main .event-container #task-form .save-btn:hover,
html body .main-container main .task-container #event-form .save-btn:hover,
html body .main-container main .task-container #task-form .save-btn:hover {
  transform: scale(1.1);
}
html body .main-container main .home-container, html body .main-container main .register-container, html body .main-container main .login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
html body .main-container main .home-container .main-buttons, html body .main-container main .register-container .main-buttons, html body .main-container main .login-container .main-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  gap: 20px;
}
html body .main-container main .home-container .main-buttons .menu-btn, html body .main-container main .register-container .main-buttons .menu-btn, html body .main-container main .login-container .main-buttons .menu-btn {
  width: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.2s ease-in-out;
  background-color: transparent;
}
html body .main-container main .home-container .main-buttons .menu-btn:hover, html body .main-container main .register-container .main-buttons .menu-btn:hover, html body .main-container main .login-container .main-buttons .menu-btn:hover {
  transform: scale(1.1);
}
html body .main-container main .home-container .main-buttons .btn-events, html body .main-container main .register-container .main-buttons .btn-events, html body .main-container main .login-container .main-buttons .btn-events {
  background-image: url(../img/home/events.png);
}
html body .main-container main .home-container .main-buttons .btn-tasks, html body .main-container main .register-container .main-buttons .btn-tasks, html body .main-container main .login-container .main-buttons .btn-tasks {
  background-image: url(../img/home/to_do_list.png);
}
html body .main-container footer {
  background-image: url(../img/home/down_panel.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 10vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}
html body .main-container footer .rights-icon {
  height: 80%;
  width: 20%;
  background-image: url(../img/main/rights.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  display: block;
}
html body .main-container.login-register-container {
  background-image: url(../img/login-register/zach_back.png);
}
html body .main-container.login-register-container .login-register-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin-top: 10vh;
}
html body .main-container.login-register-container .login-register-box .login-logo {
  width: 50%;
  height: auto;
  margin-bottom: 10vh;
}
html body .main-container.login-register-container .login-register-box .login-register-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}
html body .main-container.login-register-container .login-register-box .login-register-form input {
  width: 95%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: black;
  color: white;
}
html body .main-container.login-register-container .login-register-box .login-register-form input::-moz-placeholder {
  color: grey;
}
html body .main-container.login-register-container .login-register-box .login-register-form input::placeholder {
  color: grey;
}
html body .main-container.login-register-container .login-register-box .login-register-form .error-message {
  color: red;
  font-weight: bold;
  font-size: 16px;
}
html body .main-container.login-register-container .login-register-box .login-register-form .show-password {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  color: white;
  font-size: 16px;
  margin: 15px;
}
html body .main-container.login-register-container .login-register-box .login-register-form .show-password label {
  white-space: nowrap;
  position: relative;
  top: -4px;
}
html body .main-container.login-register-container .login-register-box .login-register-form .login-btn, html body .main-container.login-register-container .login-register-box .login-register-form .register-btn, html body .main-container.login-register-container .login-register-box .login-register-form .back-btn, html body .main-container.login-register-container .login-register-box .login-register-form #redirect-register-btn {
  width: 40%;
  min-width: 100px;
  height: 5vh;
  min-height: 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
html body .main-container.login-register-container .login-register-box .login-register-form .login-btn {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  margin-bottom: 10px;
}
html body .main-container.login-register-container .login-register-box .login-register-form .login-btn:hover {
  background: linear-gradient(135deg, #66BB6A, #388E3C);
  transform: translateY(-2px);
}
html body .main-container.login-register-container .login-register-box .login-register-form .register-btn, html body .main-container.login-register-container .login-register-box .login-register-form #redirect-register-btn {
  background: linear-gradient(135deg, #2196F3, #1565C0);
}
html body .main-container.login-register-container .login-register-box .login-register-form .register-btn:hover, html body .main-container.login-register-container .login-register-box .login-register-form #redirect-register-btn:hover {
  background: linear-gradient(135deg, #42A5F5, #1E88E5);
  transform: translateY(-2px);
}
html body .main-container.login-register-container .login-register-box .login-register-form .back-btn {
  background: linear-gradient(135deg, #FF9800, #F57C00);
  margin-top: 10px;
}
html body .main-container.login-register-container .login-register-box .login-register-form .back-btn:hover {
  background: linear-gradient(135deg, #FFA726, #F57C00);
  transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */