* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: Arial, sans-serif; */
  font-family: "Encode Sans Expanded", sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  background-image: url(./src/bell_login_background.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 25%;
  font-size: 1rem;
}

/* Header */
.header {
  background: #1e5ba8;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  display: flex;
  font-size: 0.75rem;
}

.logo img {
  width: 2rem;
}

.logo .logo-text {
  margin-left: 0.25rem;
  display: flex;
  flex-direction: column;
}

.language-link {
  color: white;
  text-decoration: underline;
  font-size: 0.875rem; /* 14px converted to rem */
}

/* Main container */
.container {
  display: flex;
  justify-content: left;
  padding-top: 3.5rem;
  padding-left: 6rem;
  position: relative;
  width: fit-content;
}

/* Login form section */
.login-section {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.login-form {
  padding: 3rem 3rem 0 3rem;
  max-width: 27rem;
}

.login-title {
  font-size: 2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 0.125rem solid #888888; /* 2px converted to rem */
  background-color: #f4f4f4;
  font-size: 1rem; /* 16px converted to rem */
  outline: none;
}

.form-input:focus {
  border-color: #1e5ba8;
}

.login-btn {
  padding: 1rem 2.5rem;
  background: #1e5ba8;
  color: white;
  border: none;
  border-radius: 10rem;
  font-size: 1rem;
  cursor: pointer;
  margin: 1rem 0;
}

.login-btn:hover {
  background: #003778;
}

.forgot-password {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.forgot-password a {
  color: #1e5ba8;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  font-size: 0.75rem;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #f4f4f4;
}

.footer-links a {
  color: #1e5ba8;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  color: #666;
}

/* Image section */
.image-section {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.business-person {
  position: absolute;
  right: 5rem; /* 80px converted to rem */
  top: 50%;
  transform: translateY(-50%);
  width: 18.75rem; /* 300px converted to rem */
  height: 25rem; /* 400px converted to rem */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 0.625rem; /* 10px converted to rem */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1); /* 0 10px 30px converted to rem */
}

.person-silhouette {
  width: 7.5rem; /* 120px converted to rem */
  height: 7.5rem; /* 120px converted to rem */
  background: #6c757d;
  border-radius: 50%;
  margin-bottom: 1.25rem; /* 20px converted to rem */
  opacity: 0.3;
  position: relative;
}

.person-silhouette::before {
  content: "👤";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.75rem; /* 60px converted to rem */
  opacity: 0.5;
}

.laptop {
  width: 12.5rem; /* 200px converted to rem */
  height: 7.5rem; /* 120px converted to rem */
  background: #343a40;
  border-radius: 0.5rem; /* 8px converted to rem */
  position: relative;
  margin-top: 1.25rem; /* 20px converted to rem */
}

.laptop::before {
  content: "";
  position: absolute;
  top: 0.625rem; /* 10px converted to rem */
  left: 0.9375rem; /* 15px converted to rem */
  right: 0.9375rem; /* 15px converted to rem */
  bottom: 1.875rem; /* 30px converted to rem */
  background: #6c757d;
  border-radius: 0.25rem; /* 4px converted to rem */
}

.office-elements {
  position: absolute;
  bottom: 6.25rem; /* 100px converted to rem */
  left: 3.125rem; /* 50px converted to rem */
  right: 3.125rem; /* 50px converted to rem */
  height: 3.75rem; /* 60px converted to rem */
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem; /* 10px converted to rem */
  display: flex;
  align-items: center;
  padding: 0 1.25rem; /* 0 20px converted to rem */
  gap: 0.9375rem; /* 15px converted to rem */
}

.office-item {
  width: 2.5rem; /* 40px converted to rem */
  height: 2.5rem; /* 40px converted to rem */
  background: #dee2e6;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 48rem) {
  /* 768px converted to rem */
  .container {
    flex-direction: column;
  }

  .login-section {
    width: 100%;
    height: auto;
    min-height: 60vh;
  }

  .image-section {
    height: 40vh;
    min-height: 12.5rem; /* 200px converted to rem */
  }

  .business-person {
    right: 1.25rem; /* 20px converted to rem */
    width: 12.5rem; /* 200px converted to rem */
    height: 15.625rem; /* 250px converted to rem */
  }

  .person-silhouette {
    width: 5rem; /* 80px converted to rem */
    height: 5rem; /* 80px converted to rem */
  }

  .laptop {
    width: 7.5rem; /* 120px converted to rem */
    height: 5rem; /* 80px converted to rem */
  }

  .header {
    padding: 0.9375rem 1.25rem; /* 15px 20px converted to rem */
  }
}

.error-message {
  color: #dc3545;
  font-size: 0.75rem; /* 12px converted to rem */
  margin-top: 0.3125rem; /* 5px converted to rem */
  display: none;
}
