@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f6fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
img {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
}
.login-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 41, 59, 0.10);
  padding: 40px 32px 32px 32px;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  max-width: 250px;
}

h2 {
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

.form-group {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 3px;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
}

input[type="email"],
input[type="password"] {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  background: #fff;
}

.btn-primary {
  background: #00a0e9;
  color: #fff;
  border: none;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  max-width: 170px;
  border-radius: 10000px;
  margin: 0 auto;
  display: block;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.login_coation {
  font-size: 11px;
  color: #db1616;
  FONT-WEIGHT: 500;
  margin: 0 0 30px;
  display: block;
  text-align: center;
}

#register_form_tag {
  width: 100%;
}


@media screen and (max-width:768px) {
  .login-logo {
    max-width: 200px;
  }
  .login-card {
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 360px;
    width: 90%;
    box-sizing: border-box;
  }
  .login_coation {
    font-size: 10px;
  }
}