* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  font-family: Arial, sans-serif;
}

.login_form {
  background-color: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#main-header {
  text-align: center;
  margin-bottom: 20px;
}

#line {
  font-size: 24px;
  color: #001e4d;
  font-weight: 600;
  border-bottom: 2px solid #001e4d;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  color: #333;
}

#login-form {
  display: flex;
  flex-direction: column;
}

.input-group {
  position: relative;
  margin-bottom: 15px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 12px;
  color: #666;
}

input {
  width: 150%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #001e4d;
  outline: none;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

#submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #001e4d;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  border: none;
  padding: 12px;
  margin: 10px 0;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#submit:hover {
  background-color: #003366;
}

#submit:active {
  background-color: #002244;
  transform: scale(0.98);
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider span {
  padding: 0 10px;
  color: #666;
  font-size: 14px;
}

.g_id_signin {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.register {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

#register {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #001e4d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

#register:hover {
  color: #003366;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.google-signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #757575;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  margin-top: 10px;
}

.google-signin-button:hover {
  background-color: #f7f7f7;
}

.google-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
