@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap");
/* BASIC PROPERTIES TO ALL ELEMENTS */
* {
  box-sizing: border-box;
}

/* COLOR DECLARATION */
/* SOME BASIC ELEMENT PROPERTY UPDATE */
p {
  margin: 0;
}

svg {
  vertical-align: middle;
}

/* MIXINS */
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.auth-section form, .auth-section, body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.otp-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.auth-section .form-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

/* BODY  */
body {
  margin: 0;
  min-height: 100vh;
  background-color: #b1b1f6;
  color: #33336a;
  overflow-x: hidden;
}

/* A SHINING BRIGHT LIGHT FROM BEHIND THE CENTER OF THE INTRO */
body::before, body::after {
  content: " ";
  width: 28.125rem;
  height: 28.125rem;
  border-radius: 28.125rem;
  background-color: #6363c6;
  position: absolute;
  z-index: -1;
  filter: blur(225px);
}

body::after {
  top: -3rem;
  left: -5rem;
}

body::before {
  bottom: 2rem;
  right: 0;
}

/* AUTH FORM INTRO PROJECT TITLE HEADER */
.project-title {
  position: absolute;
  top: 20px;
}

.project-title p:first-child {
  text-align: center;
  font-size: 2vw;
}

.project-title p:last-child {
  font-size: 10vw;
  box-sizing: border-box;
  line-height: 0.7;
}

/* REGISTER - LOGIN FORM */
.auth-section {
  border: 1px solid #9898ff;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 40px;
  box-shadow: 0 8px 32px #6363c6, 0 0 80px #b1b1f6;
  transition: ease-in-out 0.3s;
}

.auth-section:hover {
  box-shadow: 0 12px 48px #6363c6, 0 0 100px #b1b1f6;
  transition: ease-in-out 0.3s;
  transform: translateY(-5px);
}

.auth-section .form-group {
  padding-bottom: 5px;
}

.auth-section .form-group a {
  font-size: 0.75rem;
  color: #33336a;
  margin-top: 5px;
}

.auth-section h1 {
  text-align: center;
  text-transform: uppercase;
}

.auth-section form {
  text-align: center;
  width: 100%;
  gap: 20px;
}

.auth-section form input[type=submit] {
  text-transform: capitalize;
}

.auth-section form svg {
  height: 16px;
  width: 16px;
}

.auth-section form label {
  gap: 0.5rem;
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 0.875rem;
  align-items: center;
  display: flex;
}

.custom-input-field {
  width: 300px;
  text-decoration: none;
  border: 1.5px solid #7e7ec3;
  border-radius: 5px;
  background-color: rgba(99, 99, 198, 0);
  font-size: 14px;
  padding: 10px;
  color: #33336a;
  transition: ease-out 0.3s;
}

.custom-input-field:hover {
  border: 1.5px solid #33336a;
  transition: ease-out 0.3s;
}

.custom-input-field::placeholder {
  color: #7e7ec3;
}

.custom-input-field:focus {
  border: 1.5px solid #33336a;
  background-color: rgba(99, 99, 198, 0.1);
  outline: none;
}

.custom-button {
  text-align: center;
}

.custom-button:hover {
  background-color: #33336a;
  color: #e1e1e1;
  transition: ease-out 0.2s;
}

/* SEARCH BAR */
.search-form {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* PAGINATION CSS */
.paginator {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paginator a {
  border: 1px solid gray;
  padding: 10px 50px;
  cursor: pointer;
}

.paginator a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  color: #181818;
  transition: 0.3s;
}

/* BACK BUTTON CSS */
.go-back {
  position: absolute;
  left: 70px;
  top: 80px;
  cursor: pointer;
  color: white;
}

.go-back:hover svg {
  color: gray;
}

.go-home {
  position: absolute;
  right: 70px;
  top: 80px;
  cursor: pointer;
  color: white;
}

/* NAVIGATION BAR CSS */
nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 50px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style-type: none;
  margin: 10px;
}

nav ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* BLOG CONTENT PAGES */
.content {
  margin-top: 70px;
  width: 80%;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.blog {
  width: 80%;
  padding: 20px;
  border: 1px solid gray;
  text-decoration: none;
  color: white;
  box-shadow: 0 0 10px black;
  background-color: #2b2828;
}

.blog:hover {
  box-shadow: 0 0 5px gray;
}

.blog h1 {
  border-bottom: 1px solid gray;
  margin-bottom: 0;
  text-transform: capitalize;
}

.blog .blog-date {
  line-height: 25px;
  color: gray;
  font-style: italic;
  margin-bottom: 20px;
}

.blog a {
  color: lightgray;
  text-decoration: none;
}

.blog .blog-desc {
  color: rgb(239, 239, 239);
  letter-spacing: 1px;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.blog .blog-author {
  font-size: 18px;
  color: gray;
  font-style: italic;
  float: right;
  text-decoration: underline;
}

.blog .blog-read {
  font-size: 18px;
  color: gray;
  font-style: italic;
  float: left;
  text-decoration: none;
}

/* BLOG BUTTONS : LIKE, SHARE, COMMENT */
.blog .blog-buttons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
}

.comment-like-button {
  float: right;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}

/* COMMENT FORM INPUT */
.comment-form {
  margin-top: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.comment {
  width: 80%;
  background-color: #2b2828;
  border: 1px solid gray;
  padding: 5px;
  margin-top: 10px;
}

.comment .comment-date {
  font-size: 12px;
  color: lightgray;
  margin-bottom: 10px;
}

.comment .comment-body {
  font-size: 16px;
  color: white;
  padding-left: 20px;
}

/* GLASSY POP UP MESSAGES CSS */
.hide {
  right: -50px;
  opacity: 0;
}

.glassy-message {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #9898ff;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 20px;
  box-shadow: 0 8px 32px #6363c6, 0 0 80px #b1b1f6;
  transition: right 1s ease-in-out, opacity 1s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1;
  animation: pop_up_message;
  animation-duration: 1s;
}

.glassy-message strong {
  text-transform: capitalize;
}

.glassy-message-error {
  border-left: 5px solid #ff8484;
}

.glassy-message-success {
  border-left: 5px solid #99ff99;
}

.glassy-message svg {
  fill: #33336a;
}

.glassy-message:hover {
  box-shadow: 0 12px 48px #6363c6, 0 0 100px #b1b1f6;
  transition: ease-in-out 0.3s;
  transform: translateY(-5px);
}

@keyframes pop_up_message {
  from {
    right: -50px;
    opacity: 0;
  }
  to {
    opacity: 1;
    right: 10px;
  }
}
/* OTP INPUT FIELD CSS */
.otp-input-container {
  gap: 5px;
}

.otp-input-field {
  width: 300px;
  text-align: center;
  text-decoration: none;
  border: 1.5px solid #7e7ec3;
  border-radius: 5px;
  background-color: rgba(99, 99, 198, 0);
  font-size: 20px;
  padding: 10px;
  color: #33336a;
  transition: ease-out 0.3s;
}

.otp-input-field:hover {
  border: 1.5px solid #33336a;
  transition: ease-out 0.3s;
}

.otp-input-field::placeholder {
  color: #7e7ec3;
}

.otp-input-field:focus {
  border: 1.5px solid #33336a;
  background-color: rgba(99, 99, 198, 0.1);
  outline: none;
}

/*# sourceMappingURL=styles.css.map */
