﻿@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@800&family=Roboto:wght@100;300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");
@import 'normalize.css';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, "Poppins", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  place-items: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("/img/random_image.jpg") no-repeat;
  background-size: cover;
  background-position: center;
}

a {
  text-decoration: none;
}
a :hover {
  text-decoration: underline;
}

p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.wrapper {
  width: 420px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 30px 40px;
}

.wrapper h1 {
  font-size: 36px;
  text-align: center;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  /* background: orange; */
  margin: 30px 0;
}

.input-box input {
  color: #fff;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px;
}

.input-box input::placeholder {
  color: #fff;
}

.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 0.5rem;
  /*    font-size: 14.5px;
      margin: -15px 0 15px;*/
}

.remember-forgot label input {
  accent-color: #fff;
  margin-right: 5px;
}

.remember-forgot a {
  color: #fff;
  text-decoration: none;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.wrapper .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: #333;
  font-weight: 600;
  font-size: 4rem;
}

.wrapper .register-link {
  text-align: center;
  /* margin-top: 20px; */
  margin: 20px 0 15px;
}

.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  /*    color: #f3e8ff;*/
  width: 300px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.card:hover {
  border: 1px solid rgba(26, 202, 214, 0.7);
  box-shadow: 0 0 10px rgba(26, 202, 214, 0.5), 0 0 30px rgba(255, 100, 255, 0.2);
  cursor: pointer;
}

@media (max-width: 600px) {
  .card {
    width: 90%;
    padding: 1rem;
  }
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.05) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s ease-in-out;
  pointer-events: none;
}

.card:hover::before {
  left: 125%;
}

.card h1,
.card h2,
.card h3 {
  margin: 0.5rem 0;
  color: #fff0fa;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.15);
}

.card p {
  margin-top: 2rem;
  /*color: #e0d4f7;*/
  font-size: 0.95rem;
  /*line-height: 1.5;*/
}

.card-photo img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-photo img {
  transform: scale(1.05);
}

.read-more {
  margin-top: 1rem;
  text-decoration: none;
  color: #ffc4ec;
  font-weight: 500;
  align-self: flex-start;
  position: relative;
  transition: color 0.3s ease;
}

.read-more::after {
  content: "→";
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #ff91e3;
  animation: bounce 0.4s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}
.read-more:hover::after {
  transform: translateX(5px);
}

.bx {
  /*color: #111;*/
  padding: 0;
}

.text-danger {
  margin-top: 1rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  margin-left: 0.5rem;
}

.err-status {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
}
