* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: linear-gradient(135deg, #4a90e2, #50c9c3);*/
  background-image: url("in.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* Container */
.login-container {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}

/* Form title */
.login-form h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: #333;
}

/* Input fields */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: border 0.3s ease;
}

.form-group input:focus {
  border-color: #4a90e2;
}

/* Button */
.btn {
  width: 100%;
  padding: 14px;
  background: #4a90e2;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #357ab7;
}

/* Signup text */
.signup-text {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.signup-text a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: bold;
}

.signup-text a:hover {
  text-decoration: underline;
}

.home{
    text-align: center;
    margin-top: 20px;
}

.home a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 480px) {
  .login-container {
    padding: 30px 20px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .login-form h2 {
    font-size: 24px;
  }
}