/* General body styling */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Login form container */
.Login_form {

  width: 350px;
  padding: 20px;
  border: 1px solid #ddd; /* Light border */
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a floating effect */
  background-color: #fff; /* White background */
}

/* Input styling */
.form_input {
  width: 100%; /* Makes the input take up the full width of its container */
  padding: 12px; /* Adds space inside the input */
  margin: 10px 0; /* Adds space between inputs */
  border: 1px solid #ccc; /* Light gray border */
  border-radius: 10px; /* Slightly rounded corners */
  font-size: 16px; /* Sets a comfortable font size */
  box-sizing: border-box; /* Ensures padding doesn't increase input width */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds subtle shadow for the border */
  transition: all 0.3s ease; /* Smooth transition effect */
}

/* Focus state for the input */
.form_input:focus {
  border-color: #629eff; /* Blue border on focus */
  box-shadow: 0 0 8px #629eff; /* Blue glow effect */
  outline: none; /* Removes the default outline */
}

/* Placeholder style */
.form_input::placeholder {
  color: #aaa; /* Light gray placeholder text */
  font-style: italic; /* Italicizes the placeholder text */
}

/* Button styling */
button {
  width: 100%; /* Full-width button */
  padding: 12px; /* Adds space inside the button */
  margin-top: 15px; /* Adds spacing above the button */
  font-size: 16px; /* Comfortable font size */
  color: #fff; /* White text */
  background-color: #629eff; /* Blue background */
  border: none; /* Removes the default border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: all 0.3s ease; /* Smooth hover effect */
}

/* Button hover state */
button:hover {
  background-color: #213555; /* Darker blue for hover effect */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}

/* Button active state */
button:active {
  background-color: #213555; /* Even darker blue for active state */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Slightly smaller shadow */
  transform: scale(0.98); /* Adds a slight press effect */
}

/* Form field container for alignment */

.form_field {
  display: flex;
  align-items: center;
  gap: 20px;
}

.image_icon {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
}

.submit_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login_arrow {
  width: 20px;
  height: 20px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 5px;
}

.Company_LOGO {
  width: 128px;
  height: 128px;
}
