/* General Styles */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #e2e2e2, #c9d6ff);
}

/* Branding Section */

.company-logo {
  max-width: 200px;  /* Max width to ensure the logo doesn't get too large */
  width: 100%;       /* Make the logo responsive, adjusting to container width */
  height: auto;      /* Maintain the aspect ratio */
  display: block;    /* Prevents unwanted bottom space */
  margin: 0 auto;    /* Center the logo horizontally */
  transition: transform 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.company-logo:hover {
  transform: scale(1.05); /* Slight zoom effect on hover for interactivity */
}

.branding-section {
  background: linear-gradient(135deg, #4a14d4, #ab3bfb);
  color: #fff;
  text-align: center;
  padding: 40px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.branding-title {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.branding-email, .branding-website {
  font-size: 16px;
  margin: 5px 0;
}

.branding-website {
  text-decoration: none;
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: #f8f9fa;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.branding-website:hover {
  text-decoration: underline;
  background-color: #007bff;
  color: #fff;
}

.branding-website i {
  margin-right: 8px;
}

/* Login Section */
.login-section {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  background: #f9f9f9;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.login-title {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.login-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.form-label {
  font-weight: 600;
}

.form-control, .form-select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.form-control:focus, .form-select:focus {
  outline: none;
  border-color: #7494ec;
  box-shadow: 0 0 5px rgba(116, 148, 236, 0.5);
}

.btn-primary {
  background: linear-gradient(135deg, #7494ec, #506ebd);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  padding: 12px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #506ebd, #303f8a);
}

.contact-link {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0056b3;
}

/* Logo Styles */
.mrmonitor-logo {
  width: 150px;
  background-color: #800080;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
 