:root {
  --lamborghini-color: rgb(255, 215, 0);
  --ferrari-color: rgb(255, 40, 0);
  --random-color: rgb(40, 167, 69);
  --maserati-color: rgb(0, 0, 50);
  --title-font: 'Montserrat', sans-serif;
  --text-font: 'Poppins', sans-serif;
}

body {
  font-family: var(--text-font);
}

.account-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.account-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../Images/home-section-background.jpg) no-repeat center/cover;
  filter: blur(6px);
  z-index: 0;
}

.account-form {
  position: relative;
  width: 40%;
  height: 85%;
  z-index: 1;
  border-radius: 10px;
  margin-top: 60px;
  border-radius: 10px;
  padding: 20px 30px;
  backdrop-filter: blur(40px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
}

.form-container {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.user-container {
  display: flex;
  justify-content: space-between; 
  gap: 20px; 
  width: 100%;
}

.user-info {
  display: flex;
  flex-direction: column;
  width: 40%;
}

h2 {
  color: white;
  font-family: var(--title-font);
}

input {
  width: 100%;
  padding: 4px 0 4px 10px;
  border: 2px solid white;
  color: white;
  background: black;
  border-radius: 8px;
  transition: all 0.1s ease;
}

input:focus {
  outline: 2px solid white; 
  outline-offset: 2px;      
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

label {
  font-weight: bold;
  font-family: var(--title-font);
  font-size: 1.1rem;
  color: white;
}

ul li {
  font-size: 0.7rem;
  color: white;
}

.sign-in-btn {
  width: 40%;
  border: 2px solid white;
  border-radius: 10px;
  background: black;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  transition: all 0.15s ease;
}

.sign-in-btn:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .account-form {
    width: 60%;
    padding: 16px 18px;
  }
  .user-info {
    width: 48%;
  }
  .sign-in-btn {
    width: 40%;
  }
}

@media (max-width: 900px) {
  .account-form {
    width: 80%;
    padding: 20px;
  }
  .user-container {
    gap: 12px;
  }
  .user-info {
    width: 100%;
  }
  .sign-in-btn {
    width: 40%;
  }
}

@media (max-width: 600px) {
  .account-container {
    align-items: flex-start;
    margin-top: 60px;
  }
  .account-form {
    width: 72%;
    height: auto;
  }
  .form-container {
    padding: 0;
  }
  .user-container {
    flex-direction: column;
    gap: 8px;
  }
  .user-info {
    width: 100%;
  }
  h2 {
    font-size: 1.3rem;
  }
  label {
    font-size: 1rem;
  }
  input {
    font-size: 0.95rem;
    padding: 4px 0 4px 6px;
  }
  .sign-in-btn {
    width: 40%;
    font-size: 1rem;
    padding: 10px 0;
  }
}