@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes borderGlow {
  0% {
    border-color: rgba(0, 247, 255, 0.5);
  }
  50% {
    border-color: #00f7ff;
  }
  100% {
    border-color: rgba(0, 247, 255, 0.5);
  }
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a1a, rgb(2.92, 2.92, 7.58));
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.login-container .login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  padding: 2.5rem;
  border-radius: 20px;
  animation: fadeIn 0.8s ease-out;
}
.login-container .login-card h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00f7ff;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
  font-size: 2.5rem;
}
.login-container .login-card .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.login-container .login-card .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.login-container .login-card .form-group input {
  width: 92%;
  margin-right: 10%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 247, 255, 0.3);
  border-radius: 8px;
  background: rgba(10, 10, 26, 0.5);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.login-container .login-card .form-group input:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
}
.login-container .login-card .btn-login {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #00f7ff, #0051ff);
  color: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
}
.login-container .login-card .btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.7);
}
.login-container .login-card .error-message {
  background: rgba(255, 71, 71, 0.1);
  border: 1px solid #ff4747;
  color: #ff4747;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dashboard {
  min-height: 100vh;
  padding: 2rem;
}
.dashboard .profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.dashboard .profile-card .profile-left {
  text-align: center;
}
.dashboard .profile-card .profile-left .profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #00f7ff;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  animation: borderGlow 2s infinite;
}
.dashboard .profile-card .profile-left .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.dashboard .profile-card .profile-left .profile-image img:hover {
  transform: scale(1.1);
}
.dashboard .profile-card .profile-left h2 {
  color: #00f7ff;
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
  margin-bottom: 0.5rem;
}
.dashboard .profile-card .profile-left .position {
  color: rgba(0, 247, 255, 0.8);
  font-size: 1.1rem;
}
.dashboard .profile-card .profile-right {
  display: grid;
  gap: 1.5rem;
}
.dashboard .profile-card .profile-right .info-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.dashboard .profile-card .profile-right .info-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
}
.dashboard .profile-card .profile-right .info-section h3 {
  color: #00f7ff;
  margin-bottom: 1rem;
}
.dashboard .profile-card .profile-right .info-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}
.dashboard .profile-card .bio-preview {
  position: relative;
  max-height: 100px;
  overflow: hidden;
}
.dashboard .profile-card .read-more {
  color: #00f7ff;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}
.dashboard .bio-full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard .bio-full .bio-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}
.dashboard .bio-full .close-bio {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.dashboard .action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.dashboard .action-buttons .btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #00f7ff, #0051ff);
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.5), 0 0 20px rgba(0, 247, 255, 0.3), 0 0 30px rgba(0, 247, 255, 0.1);
}
.dashboard .action-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.7);
}
.dashboard .action-buttons .btn.btn-secondary {
  background: linear-gradient(45deg, rgb(0, 148.2, 153), rgb(0, 48.6, 153));
}

@media (max-width: 768px) {
  .login-container .login-card {
    padding: 2rem 1.5rem;
  }
  .dashboard .profile-card {
    grid-template-columns: 1fr;
  }
  .dashboard .profile-card .profile-left .profile-image {
    width: 150px;
    height: 150px;
  }
  .dashboard .profile-card .action-buttons {
    grid-template-columns: 1fr;
  }
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn-edit {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.2);
  color: #00f7ff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}
.btn-edit:hover {
  background: rgba(0, 247, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.popup .popup-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 247, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 247, 255, 0.2);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 15px;
  color: #fff;
}
.popup .popup-content h2 {
  color: #00f7ff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.popup .popup-content .form-group {
  margin-bottom: 1rem;
}
.popup .popup-content .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.popup .popup-content .form-group input, .popup .popup-content .form-group textarea {
  width: 90%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.popup .popup-content .form-group input:focus, .popup .popup-content .form-group textarea:focus {
  outline: none;
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.2);
}
.popup .popup-content .form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.popup .popup-content .popup-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.popup .popup-content .popup-actions .btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.popup .popup-content .popup-actions .btn-primary {
  background: linear-gradient(45deg, #00f7ff, #0051ff);
  color: #fff;
}
.popup .popup-content .popup-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.4);
}
.popup .popup-content .popup-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.popup .popup-content .popup-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

input[type=file] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 247, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  color: #fff;
  width: 100%;
  cursor: pointer;
}
input[type=file]::-webkit-file-upload-button {
  background: rgba(0, 247, 255, 0.1);
  border: 1px solid rgba(0, 247, 255, 0.2);
  color: #00f7ff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
input[type=file]::-webkit-file-upload-button:hover {
  background: rgba(0, 247, 255, 0.2);
}

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