* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 30px 1fr 40px;
  grid-template-areas: "sidebar main" "sidebar footer";
  min-height: 100vh;
}

aside {
  grid-area: sidebar;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 250px;
  padding: 0px;
  background: #f4f4f4;
  position: fixed;
  min-height: 100vh;
  overflow-y: auto;
}

aside nav h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  margin-left: 10px;
}

aside ul {
  list-style: none;
  padding: 0px;
}

aside ul li {
  margin: 5px 0;
  padding-left: 10px;
}

aside ul li a {
  text-decoration: none;
  color: #000000;
  display: block;
  padding: 5px;
  border-radius: 5px;
  transition: 0.3s;
}

aside ul li a:hover {
  color: #ffffff;
}

aside ul li:hover {
  background: #23497b;
}

main {
  grid-area: main;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

a {
  font-size: 20px;
  text-decoration: none;
  color: #007BFF;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  width: 200px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.488);
  transition: all 0.5s ease-in-out;
}

.gallery img:hover {
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.488);
  transform: scale(1.2);
}

.folder {
  margin: 10px 0;
  display: block;
  color: #3384ed;
  cursor: pointer;
}

.folder:hover {
  color: #000;
}

.bt-link {
  position: fixed;
  bottom: 30px;
  left: 50px;
  padding: 6px 22px;
  background: #3384ed;
  color: #f4f4f4;
  border-radius: 6px;
  border: 1px solid #4f4f4f;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.426);
}

.bt-link:hover {
  background: #23497b;
}

@media (max-width: 800px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 300px 1fr 40px;
    grid-template-areas: "main" "footer";
    min-height: 100vh;
  }
  aside {
    display: none;
  }
}
.wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(81, 42, 91, 0.4)), url(../img/dm3.jpg) no-repeat bottom center/cover;
  min-height: calc(100vh - 40px);
  z-index: 999;
}

.error {
  color: rgb(203, 31, 31);
  font-weight: 600;
  font-size: 20px;
}

.success {
  color: rgb(0, 135, 14);
  font-weight: 600;
  font-size: 20px;
}

.login-card {
  position: relative;
  top: 200px;
  margin: 0 auto;
  width: 350px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  box-shadow: 4px 4px 4px #000000;
  color: #fff;
  text-align: center;
}
.login-card h1 {
  text-align: center;
  padding: 5px;
}
.login-card p {
  font-size: 18px;
  text-align: center;
  padding: 10px;
}

.login-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.login-form input.form-input {
  font-size: 18px;
  border-radius: 5px;
  padding: 6px;
}

.login-btn {
  width: 120px;
  font-weight: bold;
  font-size: 16px;
  margin-top: 20px;
  background-color: #d67b30;
  border: none;
  border-radius: 6px;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  cursor: pointer;
}

.login-btn:hover {
  background-color: #7b7b7b;
}/*# sourceMappingURL=main.css.map */