@import url('https://fonts.googleapis.com/css2?family=Prompt: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&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

:root {
  --font-family: 'Prompt', sans-serif;
  --color-primary: #2B66F6;
  --color-primary-hover: #1A4ED1;
  --color-accent: #FF6B6B;
  --color-bg-light: #FFFFFF;
  --color-bg-dark: #1E1E1E;
  --color-text-dark: #333333;
  --color-text-light: #F0F0F0;
  --color-muted: #777777;
  --max-width: 1300px;
  --font-size-heading: 2rem;
  --border-radius: 1rem;
  --input-radius: 8px;
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
  --body-background: #2c2c3e;
  --container-padding: 1rem;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-dark);
  background: var(--body-background);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  background-image: url('./images/Login\ Test\ Background.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0.5rem;
}

.logo-top{
    display: none;
}

.form-section {
  
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--color-bg-light); */
  background-color: #1e1e2f;
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  padding: 5rem 2rem;
}

.form-card {
  width: 80%;
  max-width: 400px;
}

.title {
  text-align: center;
  color: var(--color-text-light);
  font-size: var(--font-size-heading);
  font-weight: 400;
}

.subtitle {
  text-align: center;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.material-symbols-outlined {
  position: absolute;
  right: 10px;
  top: 44px;
  cursor: pointer;
  font-weight: 100;
  color: rgb(196, 196, 196);
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 200;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: #2c2c3e;
  border: 1px solid #40405a;
  border-radius: var(--input-radius);
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--color-muted);
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(43, 102, 246, 0.15);
  color: white;
}

.form-options{
    color: var(--color-muted);
    display: flex;
    align-items: center;
}

/* .form-group select {
    width: 15rem;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 0.8rem;
    color: #111827;
    -webkit-appearance: none;
    
}
.form-group select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
} */

.chevron-icon{
  position: absolute;
  right: 10px;
  top: 40px;
  font-weight: 100;
  color: rgb(14, 13, 13);
}

.btn-primary {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1.5rem;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
}

.switch-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.switch-text a {
  color: var(--color-primary);
  text-decoration: none;
}

.alternate-signin-group{
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  margin-top: 1rem;
}

.or-text{
  font-size: 1rem;
  color: #555555;
  font-weight: 400;
  text-align: center;
}

.google{
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid 1px #40405a;
  padding: 1rem 1rem;
  border-radius: 1rem;
  background-color: #1a1a29;
  color: white;
}

.google:hover{
  box-shadow: 0 8px 20px rgba(61, 131, 255, 0.1);
}

.google-img{
  width: 1.5rem;
  height: 1.5rem;
} 

.google-img img{
  width: 100%;
  height: 100%;
}

.google-text, .facebook-text{
  font-size: 1rem;
  color: white;
  font-weight: 200;
}

.facebook{
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid 1px #40405a;
  padding: 1rem 1rem;
  border-radius: 1rem;
  background-color: #1a1a29;
}

.facebook:hover{
  box-shadow: 0 8px 20px rgba(61, 131, 255, 0.1);
}

.facebook-img{
  width: 1.5rem;
  height: 1.5rem;
}

.facebook-img img{
  width: 100%;
  height: 100%;
}



.hero-section {
  flex: 1;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  justify-content: space-between;
}

.logo {
  width: 8rem;
  height: 8rem;
  align-self: flex-end;
  margin-top: -3rem;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  width: 90%;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: var(--color-accent);
}

.hero-content p {
  color: var(--color-muted);
  line-height: 1.6;
}

.slide{
    display: flex;
    flex-direction: row;
    column-gap: 4px;
    align-items: center;
    /* border: solid 1px red; */
    width: 100px;
    height: 1rem;
    justify-self: baseline;
}

.lg-slide{
    width: 60%;
    height: 4px;
    background-color: white;
}

.sm-slide{
    width: 20%;
    height: 4px;
    background-color: var(--color-muted);
}



@media (max-width: 900px) {

  

  .container {
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }

  .form-section {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    border-radius: 1rem;
  }

  .form-card {
    height: auto;
  }

  .hero-content {
    display: none;
    /* text-align: center;
    padding: 2rem; */
  }

  .logo-top{
    width: 8rem;
    height: 8rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .logo-top img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .logo {
        display: none;
    }
}


