body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: url('/assets/images/signin.png') no-repeat center center fixed;
  background-size: cover;
}

.login-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 360px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.logo {
  width: 120px;
  margin-bottom: 15px;
  text-align: center;
}

.login-card h2 {
  margin-bottom: 25px;
}

.form-group {
  text-align: left;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.form-group input:not([type="checkbox"]) {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.phone-field {
  display: flex;
  align-items: center;
}

.phone-field .country-code {
  background: #f0f0f0;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.phone-field input {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-footer a {
  font-size: 12px;
  color: #007c6a;
  text-decoration: none;
}

.form-footer button {
  background: #007c6a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.register-prompt {
  margin-top: 15px;
  font-size: 14px;
}
