.two-column-card {
  display: flex;
  flex-direction: row;
  width: 850px;
  max-width: 95vw;
  min-height: 480px;
  padding: 0;
}
.card-left {
  flex: 1;
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-right {
  flex: 1;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(200, 210, 220, 0.4);
  padding: 40px 35px;
}
.right-text {
  text-align: center;
}
.right-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #297bd8a8;
  margin-bottom: 16px;
  line-height: 1.2;
}
.right-text p {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 0;
  line-height: 1.4;
}

.right-logo {
  margin-top: 25px;
  text-align: center;
}

.central-motors-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
}

.central-motors-text:hover {
  color: #2d3748;
}

.right-side-logo {
  height: 200px;
  opacity: 0.25;
  transition: opacity 0.3s ease;
  filter: grayscale(20%);
}

.right-side-logo:hover {
  opacity: 0.4;
  filter: grayscale(0%);
}

.language-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px 0;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.lang-btn {
  background: #232b36;
  color: #bfc9d1;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  outline: none;
  box-shadow: none;
  letter-spacing: 0.01em;
}
.lang-btn.active,
.lang-btn:hover {
  background: #2563eb;
  color: #fff;
}

.side-success-message {
  background: #eafaf1;
  color: #09804a;
  border: 1px solid #b3ffd1;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 15px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(9, 128, 74, 0.07);
  animation: fadeIn 0.4s;
}

.side-error-message {
  background: #ffeaea;
  color: #d63031;
  border: 1px solid #ffb3b3;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 18px;
  font-size: 15px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(214, 48, 49, 0.07);
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #b6bfc9 0%,
    #88a8c0 25%,
    #6abce2 50%,
    #f8f8f8 75%,
    #74b9ff 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -1;
}

.background-blur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><filter id="blur"><feGaussianBlur stdDeviation="20"/></filter></defs><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.1)" filter="url(%23blur)"/><circle cx="800" cy="300" r="100" fill="rgba(255,255,255,0.05)" filter="url(%23blur)"/><circle cx="300" cy="700" r="120" fill="rgba(255,255,255,0.08)" filter="url(%23blur)"/><circle cx="700" cy="800" r="80" fill="rgba(255,255,255,0.03)" filter="url(%23blur)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 1;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 40px;
}

.login-title {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
  font-weight: bolder;
  margin-bottom: 15px;
}

.main-logo {
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.main-logo:hover {
  transform: scale(1.05);
}

.login-title span {
  display: block;
  font-size: 12px;
  color: #636e72;
  margin-top: 5px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.login-header h2 {
  font-size: 28px;
  color: #74b9ff;
  font-weight: 600;
  margin: 0;
}

/* Input Groups */
.input-group {
  margin-bottom: 25px;
}

.input-wrapper {
  position: relative;
  transition: all 0.3s ease;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8c6db;
  font-size: 16px;
  transition: all 0.3s ease;
}

.input-wrapper.focused i {
  color: #74b9ff;
}

.input-wrapper input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid transparent;
  background: #f8f9fa;
  border-radius: 12px;
  font-size: 16px;
  color: #2d3436;
  transition: all 0.3s ease;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #b8c6db;
  font-weight: 300;
}

.input-wrapper input:focus {
  background: white;
  border-color: #74b9ff;
  box-shadow: 0 0 0 3px rgba(116, 185, 255, 0.1);
}

.input-wrapper.focused {
  transform: translateY(-2px);
}

/* Form Options */
.form-options {
  margin-bottom: 30px;
}

.remember-me {
  display: flex;
  align-items: center;
  color: #636e72;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: #74b9ff;
}

/* Sign In Button */
.signin-btn {
  width: 100%;
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(116, 185, 255, 0.3);
}

.signin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(116, 185, 255, 0.4);
}

.signin-btn:active {
  transform: translateY(0);
}

.signin-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Forgot Password */
.forgot-password {
  text-align: center;
}

.forgot-password a {
  color: #b8c6db;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.forgot-password a:hover {
  color: #74b9ff;
}

/* Sign Up Link */
.signup-link {
  text-align: center;
  color: white;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signup-link a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s ease;
}

.signup-link a:hover {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Removed Toastr Custom Styles */

/* Responsive Design */
@media (max-width: 900px) {
  .two-column-card {
    flex-direction: column;
    width: 95vw;
    min-height: unset;
  }
  .card-left,
  .card-right {
    padding: 30px 25px;
    border-left: none;
  }
  .card-right {
    border-top: 1px solid rgba(200, 210, 220, 0.4);
    justify-content: center;
  }
  .right-text h1 {
    font-size: 1.8rem;
  }
  .right-text p {
    font-size: 1rem;
  }
  .main-logo {
    height: 60px;
  }
  .right-side-logo {
    height: 50px;
  }
}
