@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Thin.otf') format('opentype');
  font-weight: 100;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/ExtraLight.otf') format('opentype');
  font-weight: 200;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Medium.otf') format('opentype');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/SemiBold.otf') format('opentype');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Bold.otf') format('opentype');
  font-weight: 700;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/ExtraBold.otf') format('opentype');
  font-weight: 800;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Black.otf') format('opentype');
  font-weight: 900;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 20%),
    linear-gradient(to bottom, #ab03ff, #660066 100%);

  color: white;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.centered-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.index-page {
   margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;

  background:
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.2) 0px,
      rgba(0, 0, 0, 0.2) 40px,
      transparent 40px,
      transparent 80px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.15) 20%),
    linear-gradient(to bottom, #ab03ff, #660066 100%);

  color: white;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.column-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
}

a {
  color: white;
  text-decoration: none;
}

a:visited,
a:hover,
a:active,
a:focus {
  color: white;
  text-decoration: none;
}


.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
  gap: 8px;
}

.nav-links {
  position: absolute;
  left: 16px;
  display: flex;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

.logo {
  position: absolute;
  bottom: 8px;
  left: 8px;
  height: 40px;
  object-fit: contain;
  z-index: 2147483647;
  pointer-events: none;
}

.clock {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
}


.left-panel {
  height: 100vh;
  width: 40%;
  position: absolute;
  left: 5%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.left-panel * {
  filter: drop-shadow(2px 8px 16px rgba(0, 0, 0, 0.6));
}

.big {
 font-size: 56px; 
}

.medium {
 font-size: 32px; 
}

.small-logo {
  height: auto;
  width: 248px;
}

.form {
  width: 400px;
  height: 500px;
  padding: 40px;
  background: #000;
  border-radius: 64px;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 0 4px transparent, 0 0 20px rgba(0, 0, 0, 0.5);
  background-origin: border-box;
  border: 8px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ff00ff, #ab03ff);
  background-clip: padding-box, border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.form-title {
  font-size: 32px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(45deg, #ff00ff, #ab03ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 0 0 30px 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  font-family: 'Montserrat', sans-serif;
  color: white;
    margin: 0 auto 60px 0;
}


.input-group label {
  font-size: 18px;
  font-weight: 400;
  align-self: flex-start;
}

.input {
  display: inline-block;
  width: 400px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  background-color: #000;
  border: 4px solid transparent;

  background-image:
    linear-gradient(#000, #000),
    linear-gradient(to bottom, transparent 40%, #ff00ff 80%, #ab03ff 100%);
  
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.input input {
  width: 100%;
  padding: 8px 16px;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 16px;
  font-family: inherit;
}

.input-group-e {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: 0 auto 40px 0;
}


.input-group-e label {
  font-size: 18px;
  font-weight: 400;
  align-self: flex-start;
}

.button {
  padding: 14px 96px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 999px;
  cursor: pointer;

  background-image: linear-gradient(45deg, #ff00ff, #ab03ff);
  box-shadow: 0 0 12px rgba(171, 3, 255, 0.4);
  transition: background 0.3s ease;
}

.button:hover {
  opacity: 0.9;
}

.register {
 margin-top: 20px; 
}

.login {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 12px 24px;
  font-size: 14px;
  z-index: 10;
}

.password-checklist {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #d4af37;
}

.password-checklist li {
  transition: 0.2s ease;
}

.password-checklist .valid {
  color: #ab03ff;
}

.profile-options {
  height: 6vh;
  width: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.profile-container {
  height: 40vh;
  width: 75vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.profile {
  position: relative;
  width: 320px;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 32px;
  box-shadow: 0 0 0 2px transparent, 0 0 20px rgba(171, 3, 255, 0.5);
  background-origin: border-box;
  border: 8px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #000, #000);
  background-clip: padding-box, border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.profile-selected {
  position: relative;
  width: 320px;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 32px;
  box-shadow: 0 0 0 2px transparent, 0 0 20px rgba(171, 3, 255, 0.5);
  background-origin: border-box;
  border: 8px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ab03ff, #ff00ff);
  background-clip: padding-box, border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.profile-name {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}



.addProfile {
  padding: 18px 72px;
}

.pfp-holder {
  width: 900px;
  height: 600px;
  padding: 40px;
  background: #000;
  border-radius: 64px;
  position: absolute;
  left: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 0 4px transparent, 0 0 20px rgba(0, 0, 0, 0.5);
  background-origin: border-box;
  border: 8px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ff00ff, #ab03ff);
  background-clip: padding-box, border-box;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;

  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0) transparent;
}

.pfp-holder::-webkit-scrollbar {
  width: 8px;
}

.pfp-holder::-webkit-scrollbar-track {
  background: transparent;
}

.pfp-holder::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: background .2s ease;
}

.pfp-holder::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}


.data-holder {
 width: 600px;
  height: 600px;
  padding: 40px;
  background: #000;
  border-radius: 64px;
  position: absolute;
  right: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 0 4px transparent, 0 0 20px rgba(0, 0, 0, 0.5);
  background-origin: border-box;
  border: 8px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ff00ff, #ab03ff);
  background-clip: padding-box, border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; 
  
}

.bottom-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
  padding: 8px;
  box-sizing: border-box;
  height: 100%;
}

.edit-buttons {
  padding: 14px 128px;
}

.po-buttons {
  padding: 14px 96px;
}

.input-group-n {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: auto auto 40px auto;
}

.display-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 400px;
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin: auto auto 40px auto;
}

.selected-pfp {
  width: 240px;
  height: 240px;
  background: #000;
  border-radius: 72px;
  position: relative;
  box-shadow: 0 0 0 2px transparent, 0 0 12px rgba(171, 3, 255, 0.5);
  background-origin: border-box;
  border: 6px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ab03ff, #ff00ff);
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.selected-pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.show-pfp-holder {
  width: 90%;
  height: auto;
  box-sizing: border-box;
  margin-bottom: 8px;
}

.show-holder-span {
  font-family: 'Montserrat', sans-serif;
  color: white;
  font-weight: 600;
  font-size: 32px;
}

.pfp {
  width: 100px;
  height: 100px;
  background: #000;
  border-radius: 32px;
  position: relative;
  background-origin: border-box;
  border: 4px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #fff, #fff);
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  cursor: pointer;
  user-select: none;
  transition: filter .15s ease, transform .1s ease;
}

.pfp:hover {
  filter: brightness(1.1);
}

.pfp:active {
  transform: scale(0.97);
}

.pfp:focus-visible {
  outline: 2px solid #ff00ff;
  outline-offset: 2px;
}


.pfp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.pfp-selected {
  width: 100px;
  height: 100px;
  background: #000;
  border-radius: 32px;
  position: relative;
  background-origin: border-box;
  border: 4px solid transparent;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(45deg, #ab03ff, #ff00ff);
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pfps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}