@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Font */
    --font-size-regular: 16px;
    --font-size-lg: 40px;
    --font: 'Inter', sans-serif;
    font-size: var(--font-size-regular);
    /* Font weight */
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Colors */
    --color-dark: #010101;
    --color-grey-light: #f5f5f5;
    --color-grey: #fafafa;
    --color-grey-dark: #dddddd;
    --color-grey-darker: #bfbfbf;
    --text-color: var(--color-dark);
    --bg-color: var(--color-grey);
    --border-color: var(--color-grey-dark);

    /* Utilities */
    --container-width: 50%;
    --logo-size: 70px;
    --search-input-width: 80%;
    --search-btn-width: 20%;
    --form-element-padding: 16px 16px 16px 24px;
    --border: 1px solid var(--border-color);

    /* Transitions */
    --transition-regular: all 0.15s linear;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    transition: var(--transition-regular);
}

body {
    font-family: var(--font);
    background-color: #181818;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #333 0%, #010101 100%);
}


.line {
  width: 201px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0.00) 0%, rgba(217, 217, 217, 0.60) 51.57%, rgba(217, 217, 217, 0.00) 100%);
}

h1 {
  color: #ffffff;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
}

h2 {
color: var(--colors-purple-300, #D8B4FE);
font-family: Inter;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 56px;
}

h3{
  color: var(--violet-400, #A689FA);
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 47px; /* 150% */
}

p {
  color: #A1A1AA;
}

.box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

form{
  display: flex;
  width: 343px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin-top: 80px;
}


.container1 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Required for positioning the pseudo-element */
  gap: 16px;
  padding: 16px;
  margin-top: 40px;
}

.container1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(217, 217, 217, 0.00) 0%, rgba(217, 217, 217, 0.60) 51.57%, rgba(217, 217, 217, 0.00) 100%);
}

.container2{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Required for positioning the pseudo-element */
  gap: 8px;
  padding: 16px;
  margin-top: 40px;
}


.container3 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* Required for positioning the pseudo-element */
  gap: 24px;
  padding: 16px;
  margin-top: 80px;
  margin-bottom: 120px;
}

.container3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(217, 217, 217, 0.00) 0%, rgba(217, 217, 217, 0.60) 51.57%, rgba(217, 217, 217, 0.00) 100%);
}

.TLDs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36.556px;
}

.TLDs h3 {
  display: inline-flex; /* Change the display property to inline-flex */
}

input{
  display: flex;
  width: 343px; 
  padding: 10px var(--space-7, 16px);
  align-items: center;
  gap: var(--space-6, 12px);
  align-self: stretch;
  border-radius: var(--radius-radi-2, 4px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #1E1E1E;
  color: white
}

input:hover {
  border-color: #BF83FC; /* Add your desired border color for the hover state */
}

/* Style the input fields' active/focus state */
input:focus {
  outline: none; 
  border-color: #BF83FC; 
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); 
  
  color: white;
}

button .icon {
  width: 18px; /* Adjust the icon width */
  height: 18px; /* Adjust the icon height */
  margin-right: 8px; /* Adjust the spacing between the icon and text */
}

button{
  display: flex;
  height: 36px;
  min-height: 36px;
  padding: var(--space-0, 0px) var(--space-6, 12px);
  justify-content: center;
  align-items: center;
  gap: var(--space-4, 8px);
  align-self: stretch;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--colors-purple-400, #BF83FC);
  background: var(--colors-purple-500, #A855F7);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}

.button-text {
  color: white; /* Set the text color to white */
}

/* New styles for the button's disabled state */
button:disabled {
  
  opacity: 0.6; /* Example: reduce the opacity to visually indicate the button is disabled */
  cursor: not-allowed; /* Example: change the cursor to indicate the button is not clickable */
}


.icon {
  margin-right: 8px; /* Adjust the spacing between the icon and text */
  font-size: 16px; /* Adjust the icon size as needed */
  /* Add any other styles for the icon here (e.g., color) */
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Style for the input icon */
.input-icon {
  position: absolute;
  top: 50%;
  right: 12px; /* Adjust the spacing between the icon and the text */
  transform: translateY(-50%);
  width: 16px; /* Adjust the icon width */
  height: 16px; /* Adjust the icon height */
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none; /* Prevent the icon from being selectable */
}



.input-wrapper input::placeholder {
  color: #A1A1AA; /* Change the color of the placeholder text */
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.3); /* Add a transparent text shadow to make the placeholder visible */
}

/* Style the placeholder text with the icon */
.input-wrapper input::-webkit-input-placeholder {
  padding-right: 32px; /* Add some padding on the right for the icon */
  background-size: 16px; /* Adjust the icon size */
  background-repeat: no-repeat;
  background-position: right 12px center; /* Adjust the icon position */
}

.box2{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.links{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Media query for mobile devices with a maximum width of 768px */
@media screen and (max-width: 768px) {
  .container1 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 16px;
    margin-top: 24px;
  }

 
  .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-size-adjust: 24px;
  }

  h1 {
    color: #ffffff;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
  }
  
  h2 {
  color: var(--colors-purple-300, #D8B4FE);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  }


h3{
  color: var(--violet-400, #A689FA);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px; /* 150% */
}

  .TLDs {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 36.556px;
  }

}