/* AUTH_PAGES */

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.4rem rgba(215, 215, 215, 0.6);
}

.head {
  background-color: rgb(40, 40, 40);
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.hero {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-sub {
  opacity: 0.75;
  font-size: 1.3rem;
}

.hero-butns {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.hero-butns a {
  text-decoration: none;
}

.form {
  background-color: rgb(40, 40, 40);
  border-radius: 10px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  min-width: 400px;
  margin: 4rem auto;
}

.form-input {
  padding: 0 0.5rem;
  border-radius: 5px;
  border: none;
  height: 2.2rem;
  margin-bottom: 1.5rem;
}

.form-input::placeholder {
  opacity: 0.65;
}

.butn {
  align-self: start;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  border: none;
}

.butn-form {
  margin-top: 0.25rem;
  background-color: white;
  color: rgb(40, 40, 40);
  transition: all 0.2s;
}

.butn-form:active,
.butn-form:hover {
  background-color: rgb(231, 229, 229);
  transform: translateY(-1px);
}

.butn-hero {
  padding: 0.5rem 1.2rem;
  border: white 2px solid;
  border-radius: 5px;
  color: white;
  opacity: 0.8;
  transition: all 0.2s;
}

.butn-hero:active,
.butn-hero:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.active:hover,
.active:active,
.active {
  opacity: 0.4;
  transform: translateY(0);
  cursor: not-allowed;
  pointer-events: none;
}

.form-info {
  align-self: center;
  margin-top: 2rem;
}

.form-info.link-only {
  margin: 0;
}

.form-info a {
  color: rgb(188, 188, 188);
  text-decoration: none;
  transition: all 0.2s;
}

.form-info a:hover {
  color: white;
  text-decoration: underline;
}

.footer {
  background-color: rgb(40, 40, 40);
}

.footer-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BLOG_PAGES */

.bg-primary {
  background-color: var(--bs-indigo) !important;
}

.post-title {
  font-family: "Times New Roman", Times, serif;
}

.post-image {
  height: 220px;
  width: 40%; /* pas aan naar smaak */
  overflow: hidden;
}

.post-image.head {
  height: 260px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comment {
  padding-top: 20px;
}
.commentList {
  padding: 0;
  list-style: none;
  max-height: 200px;
  overflow: auto;
}
.commentList li {
  margin: 0;
  margin-top: 10px;
}
.commentList li > div {
  display: table-cell;
}
.commenterImage {
  width: 30px;
  margin-right: 5px;
  height: 100%;
  float: left;
}
.commenterImage img {
  width: 100%;
  border-radius: 50%;
}
.commentText p {
  margin: 0;
}
.sub-text {
  color: #aaa;
  font-family: verdana;
  font-size: 13px;
}

.user-name {
  font-size: 1.3rem;
}

.btn-responsive {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
}

.category-label {
  font-size: 1.5rem;
}

@media (max-width: 767.98px) {
  .post-image {
    width: 100%;
    height: 200px;
  }

  .user-name {
    font-size: 0.8rem;
  }

  .btn-responsive {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }

  .category-label {
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .form {
    min-width: auto;
  }
  .footer-items {
    flex-direction: column;
  }
}
