html,
body {
  height: 100%;
}

body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

.form-signin {
  margin: 0 auto;
  max-width: 330px;
  padding: 15px;
  width: 100%;
}
.form-signin .checkbox {
  font-weight: 400;
}
.form-signin .form-control {
  box-sizing: border-box;
  font-size: 16px;
  height: auto;
  position: relative;
  padding: 10px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


.google-icon{
  background: #fff;
  height: 45px;
  margin: 1.2px;
  padding: 10px;
  border-radius: 1.5px;
}

/* ---- Login page layout ---- */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.login-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,.12), 0 4px 8px rgba(15,23,42,.07);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 380px;
}

.login-logo {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.5px;
}

.login-logo-dot {
  color: #f59e0b;
}

.btn-google {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 12px 28px 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(15,23,42,.08);
  transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-google:hover {
  background: #f8fafc;
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(245,158,11,.18);
  color: #0f172a;
  text-decoration: none;
}

.google-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
