
body {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  height: 100vh;
  display: flex;
  background: #f5f5f5;
}

.container {
  display: flex;
  flex: 1;
  height: 100vh;
  overflow: hidden;
}

.login-section {
  flex: 1;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.blur {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px; 
  text-align: center;
}


.blur h1 {
  font-size: 2rem; 
  font-weight: bold;
  color: #FD2C25;
  margin-bottom: 20px;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.input-group {
  display: flex;
  align-items: center;
  background: #f4f1ff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 12px;
  width: 100%;
  max-width: 250px; 
}

.input-group svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #FD2C25;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 1rem; 
  font-family: "Montserrat", sans-serif;
}


button {
  width: 100%;
  max-width: 250px;
  background: #FD2C25;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

button:hover {
  background: #a00000;
}



.blur p {
  margin-top: 20px;
  font-family: "EB Garamond", serif;
  font-size: 1.1rem; 
  color: #444;
  line-height: 1.5;
  max-width: 480px;    
  width: 100%;
  text-align: center;
}



.image-section {
  flex: 1;
  background: url('../imag/background.jpg') no-repeat center center/cover;
}


@media (min-width: 1025px) {
  .blur p {
    font-size: 1.6rem; 
  }
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column;
  }
  .image-section {
    height: 35vh;
  }
  .login-section {
    padding: 30px;
  }
}


@media (max-width: 620px) {
  .image-section {
    display: none;
  }

  .login-section {
    background: url('../imag/background.jpg') no-repeat center center/cover;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blur {
    background: transparent;
    padding: 25px;
    width: 90%;
    max-width: 350px;
  }

  .blur h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }

  .blur p {
    display: none; 
  }

  .input-group {
    max-width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.25);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .input-group input {
    color: #fff;
  }

  .input-group input::placeholder {
    color: rgba(255,255,255,0.7);
  }

  button {
    max-width: 250px;
    font-size: 1rem;
    padding: 12px;
    background: rgba(255,255,255,0.25);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  button:hover {
    background: #FD2C25;
    border-color: #FD2C25;
    color: #fff;
  }
}


@media (max-width: 400px) {
  .blur h1 {
    font-size: 1.6rem;
  }
  .input-group {
    padding: 10px;
  }
  button {
    font-size: 0.9rem;
    padding: 10px;
  }
}


@media (max-height: 500px) and (orientation: landscape) {
  .container {
    flex-direction: row;
  }

  .image-section {
    display: none;
  }

  .login-section {
    background: url('../imag/background.jpg') no-repeat center center/cover;
    padding: 10px;
  }

  .blur {
    padding: 15px;
    width: 100%;
    max-width: 450px;
  }

  .blur h1 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  }

  .blur p {
    display: none;
  }

  .input-group {
    margin-bottom: 10px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
  }

  .input-group input {
    color: #fff;
  }

  .input-group input::placeholder {
    color: rgba(255,255,255,0.7);
  }

  button {
    padding: 10px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    color: #fff;
  }

  button:hover {
    background: #FD2C25;
    border-color: #FD2C25;
    color: #fff;
  }
}
