@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed: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&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Young+Serif&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --dark: #212936;
  --almost-dark: #121826;
  --lunar-gray: #394050;
  --pale-gray: #e5e7eb;
  --cool-gray: #a1a1a9;
  --slate-gray: #4d5562;
  --purpley: #845eee;
  --blue-purple: #652cd1;
  --midnight-blue: #261e51;
  --twilight: #342d61;
}

body{
  background: radial-gradient(
    circle at 0rem 0rem,
    var(--midnight-blue),
    transparent 30%
  ),
  radial-gradient(circle at 100% 100%, var(--midnight-blue), transparent 30%);
background-color: var(--almost-dark);
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Inter", serif;
}

.wraper{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.container{
  background: var(--dark);
  color: var(--pale-gray);
  position: relative;
  width: 30rem;
  display: flex;
  flex-direction: column;
  padding: 2rem 3rem 2.5rem 3rem;
  gap: 12px;
  border:2px solid #394050;
  box-shadow: #212936;
  border-radius: 12px;
  /* padding: 20px; */
}

.inputs{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form input{
  width: 100%;
  padding: 12px;
  background-color: var(--dark);
  border: 2px solid var(--lunar-gray);
  border-radius : 10px;
  color: white;
  outline: none;
}

form input::placeholder{
  color: white;
  font-size: 12px;
  margin-left: 4px;
  padding: 2px;
}


form h1{
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

form label{
  color:var(--cool-gray);
  font-size: 12px;
  padding: 4px;
}

.user {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}

.email{
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;

}

.btn, .sub-btn{
  align-self: center;
  width: 30%;
  padding: 10px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(180deg, #845eee 0%, #652cd1 100%);
  color: white;
  font-family: 'inter';
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
}

.multi-form{
  display: flex;
  flex-direction: column;
}

.option {
  width: 100%;
  color: #a1a1a9;
  padding: 12px;
}

#selected  p {
  background-color: #652CD1;
  border: 1.5px solid #845EEE;
  color: #E5E7EB;
  font-weight: bold;
}

.option  p {
  padding: 0.9rem;
  font-size: 0.875rem;
  border: 1.5px solid #4D5562;
  border-radius: 10px;
  background-color: #394150;
  cursor: pointer;
}

.option:nth-of-type(3)  p {
  margin-bottom: 1.8rem;
}

input[type="text"]:focus, input[type="email"]:focus {
  border-color: #845eee;
}

.err-user{
  color: red;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  margin-top: 10px;
  display: none;
}

.err-email{
  color: red;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  margin-top: 10px;
  display: none;
}

.inv-email{
  color: red;
  font-weight: bold;
  text-align: center;
  padding: 8px;
  margin-top: 10px;
  display: none;
}
.info{
  padding:4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.info p{
  color: var(--cool-gray);
  font-size: 16px;
  
}

.info span{
  color: white;
}

.topics{
  color: var(--cool-gray);
  padding: 8px;
}

.topics li{
  color: white;
  list-style-position: inside;
  list-style-type: disc;
  margin: 4px;
  margin-bottom: 1px;
  padding: 1px;
}

.success-msg{
  display: flex;
  justify-content: center;
  padding: 8px;
  margin-top: 16px;
  background-color: #e5f7e5;
  color: green;
  font-weight: bold;
  text-align: center;
  border: 1px solid green;
  border-radius: 12px;
  display: none;
}


.stepper{
  display: flex;
  color: white;
  gap: 12px;
}

.items{
  display: flex;
  gap: 5px;
  padding: 4px;
}

.item{
  width:10px;
  height: 10px;
  background-color:var(--dark);
  border-radius: 100%;
}

.steps-stepper p{
  font-size: 14px;
  color: var(--cool-gray);
  opacity: 70%;
}

#sel-item{
  background-color: #652CD1;
}