/* Resetting basic styles for a more consistent design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Assistant', sans-serif;
  background-color: #f4f7fc;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

/* Styling the login section */
.login {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Message Styling */
.msg {
  font-size: 20px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

/* Form styling */
.form {
  margin-top: 10px;
}

.text, .password, select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.text:focus, .password:focus, select:focus {
  border-color: #4A90E2;
  outline: none;
}

select {
  background-color: #f9f9f9;
  font-size: 14px;
}

/* Button styling */
.btn-login {
  width: 100%;
  padding: 12px;
  background-color: #4A90E2;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: #357ABD;
}

/* Forgot link styling */
.forgot {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot:hover {
  color: #357ABD;
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
  .login {
    padding: 20px;
  }
  .msg {
    font-size: 18px;
  }
  .text, .password, select, .btn-login {
    font-size: 16px;
  }
}
