@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

/* 'Open Sans' font from Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

/* Full-page background */:root{
  --primary-color:#635bff;
  --secondary-color:#767676;
}

body {
  background: linear-gradient(to right, #667eea, #764ba2);
  font-family: 'Poppins', sans-serif;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  height: 100vh;
  margin: 0;
}
body {
  font-size: .875rem;
}

/* Container for the login box */
.login-container {
  width: 50%;
  margin: 50px auto;
}

/* Login box */
.login-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: auto;
}
.login-box form{
  padding: 0px 50px;
}

/* Header section */
.login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-header h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
}

/* Input fields */
.input-group {
  text-align: left;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

.input-group input {
  width: 500px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.input-group input:focus {
  border-color: #667eea;
  outline: none;
}

/* Remember me checkbox */
.remember-me {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.remember-me input {
  margin-right: 5px;
}

/* Login actions */
.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-password {
  font-size: 14px;
  color: #667eea;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Login button */
.login-button {
  background: #667eea;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-button:hover {
  background: #5a67d8;
}
