:root {
  --primary-color: #146837;
  --secondary-color: #666;
  --background-color: transparent;
  --box-shadow-color: rgba(0, 0, 0, 0.2);
  --input-border-color: #ccc;
  --input-focus-color: var(--primary-color);
  --submit-button-color: #fff;
  --submit-button-hover-color: #1e854d;
  --submit-button-active-color: #f3aa05;
}

/* Add this CSS to your existing styles or create a new CSS file */
li.active .arrow-icon {
    float: right;
    margin-top: 5px;
}


body {
  font-family: "Raleway", Arial, sans-serif;
  position: relative;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(5px); /* Apply the blur effect */
  background-size: cover;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;

}

.box {
  display: flex;
  width: 600px;
  height: 400px;
  background-color: #eee;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--box-shadow-color);
  padding: 40px;
  border: 4px solid #000;
  border-color:var(--primary-color);
}

.left-section,
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.left-section {
  background-color:white ;
  border: 1px solid black;
   border-radius: 5px;
  box-shadow: 0 0 10px var(--box-shadow-color);
}
.right-section {  
  margin-right: 10px;
  margin-left: 20px;
  background-color:#eee ;
   border-radius: 5px;
}

.logo-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* Additional Styles */

.container::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  z-index: -1;
}

.box:hover {
  transform: scale(1.05);
  background-color: #eee;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #45a049;
}


h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.subtitle {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.input {
  margin-bottom: 20px;
}

.input_field {
  position: relative;
}

.input_field input {
  width: auto;
  height: auto;
  padding: 8px 12px;
  border: 1px solid var(--input-border-color);
  border-radius: 4px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.input_field input:focus {
  border-color: var(--input-focus-color);
}

.input_field label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #999;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input_field input:focus ~ label,
.input_field input:valid ~ label {
  top: 0;
  font-size: 12px;
  color: var(--primary-color);
}

.submit-input {
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  background-color: var(--primary-color);
  color: var(--submit-button-color);
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-input:hover {
  background-color: var(--submit-button-hover-color);
}

.submit-input:active {
  background-color: var(--submit-button-active-color);
  transform: scale(0.98); /* Add a slight scale effect when button is active */
}


@media screen and (max-width: 480px) {
  .box {
    width: 100%;
  }
}
