@font-face {
  font-family: MontBlack;
  src: url(/fonts/MontserratBlack.otf);
}
@font-face {
  font-family: MontReg;
  src: url(/fonts/Montserrat-Regular.otf);
}

@font-face {
  font-family: MontBold;
  src: url(/fonts/Montserrat-Bold.otf);
}

@font-face {
  font-family: MontThin;
  src: url(/fonts/Montserrat-Thin.otf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.whoswatching {
  filter: brightness(0) invert(1) saturate(0) contrast(100%) drop-shadow(0px 16px 16px black);
  height: 250px;
  width: auto;
}

.profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

.profile {
  width: 320px;
  height: 320px;
  font-family: MontReg, sans-serif;
  font-size: 24px;
  color: white;
  border-radius: 20px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.profile img:not(.edit) {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  margin-bottom: 5px;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.name-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;    
  margin-top: 4px;
}

.name-wrapper div {
  font-size: 16px;
  font-family: MontReg, sans-serif;
  color: white;
  line-height: 1; 
}

.profile .edit {
  width: auto;
  height: 24px;
  cursor: pointer;
  filter: drop-shadow(0px 16px 8px black);
}

.edit:hover {
  filter: brightness(0.8);
  filter: drop-shadow(0px 16px 8px black);
}

.profile img:hover {
  filter: brightness(0.8);
  box-shadow: 0 0 16px rgba(0, 0, 0, 1);
}

.add-profile {
  width: 320px;
  height: 320px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 24px;
  transition: background-color 0.2s, filter 0.2s;
}

.add-profile img {
  width: 120px;
  height: 120px;
  opacity: 0.7;
  transition: opacity 0.2s;
}


.add-profile:hover img {
  opacity: 1;
}

.accounts-wrapper {
  position: absolute;
  top: 12.5%;
  padding: 8px; /* outline thickness */
  border-radius: 20px;
  background: linear-gradient(to right, #AB03FF, #FF00FF);
  display: inline-block; /* shrink-wrap to content */
}

.accounts-box {
  width: 500px;
  height: 650px;
  background: black;
  border-radius: 17px; /* slightly smaller to fit inside wrapper */
  padding: 20px; /* space inside the box */
  color: white; /* optional for contrast */
}

.name-options {
  margin-top: 40px;
  font-size: 36px;
  width: fit-content;
  align-items: center;
}

.name-box-wrapper {
  position: relative;
  width: 450px;
  height: 60px;
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(to bottom, transparent 50%, #AB03FF 50%, #FF00FF);
  box-sizing: border-box;
  z-index: 0;
}

.name-box {
  width: 100%;
  height: 100%;
  color: white;
  background: black;
  border-radius: 15px;
  padding: 0 10px; 
  font-size: 24px;
  border: none;
  outline: none;
  z-index: 1;
  position: relative;
  font-family: MontReg, sans-serif;
  box-sizing: border-box;
}

span {
 font-size: 24px;
}

.signup {
  color: #9903E5;
  font-size: 30px;
}

.pass-options {
  margin-top: 40px;
  font-size: 36px;
  width: fit-content;
  align-items: center;
}

.pass-box-wrapper {
  position: relative;
  width: 450px;
  height: 60px;
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(to bottom, transparent 50%, #AB03FF 50%, #FF00FF);
  box-sizing: border-box;
  z-index: 0;
}

.pass-box {
  width: 100%;
  height: 100%;
  color: white;
  background: black;
  border-radius: 15px;
  padding: 0 10px; 
  font-size: 24px;
  border: none;
  outline: none;
  z-index: 1;
  position: relative;
  font-family: MontReg, sans-serif;
  box-sizing: border-box;
}

h5 {
  font-family: MontThin, sans-serif;
  margin-top: 120px;
  font-size: 16px;
}

h5 a {
 color: #ab03ff; 
}

.register {
 margin-top: 10px;
 width: auto;
 height: 110px;
 transition: filter 0.2s ease;
 cursor: pointer;
}

.register:hover {
  filter: brightness(0.8);
}

.login {
 margin-top: 10px;
 width: auto;
 height: 110px;
 transition: filter 0.2s ease;
 cursor: pointer;
}

.login:hover {
  filter: brightness(0.8);
}