body {
  margin: 0;
  font-family:Times New Roman;
  background: linear-gradient(to right, #004e92, #000428);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #fff;
  display: flex;
  width: 90%;
  max-width: 960px;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.login-left {
  width: 50%;
  background: #eef1f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-left img {
  max-width: 90%;
  max-height: 80%;
  height: auto;
}

.login-right {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login-right form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

h2 {
  margin: 40px 0 30px;
  font-size: 28px;
  color: #000;
  text-align: center;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  align-items: center;
  font-size: 14px;
  z-index: 2;
}

.lang-switch i {
  color: #0077cc;
  margin-right: 6px;
}

.lang-switch select {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
}

/* Input Group Styles */
.input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 360px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 16px;
  box-sizing: border-box;
  appearance: none;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #0077cc;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 119, 204, 0.2);
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #555;
  font-size: 18px;
}

/* Button */
.login-btn {
  width: 100%;
  max-width: 360px;
  padding: 12px;
  background-color: #0077cc;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-btn:hover {
  background-color: #005fa3;
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
    height: auto;
  }

  .login-left,
  .login-right {
    width: 100%;
    height: auto;
  }

  .lang-switch {
    top: 10px;
    right: 16px;
  }

  h2 {
    font-size: 22px;
    margin-top: 60px;
    text-align: center;
  }

  form {
    padding: 0 10px;
  }
}


/* PROFILE PAGE CSS */

.profile-container {
  max-width: 500px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: fadeIn 0.5s ease-in;
}

.profile-container h2 {
  margin-bottom: 20px;
  text-align: center;
}

.profile-image {
  text-align: center;
  margin-bottom: 20px;
}

.profile-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #3498db;
}

.feedback {
  background: #ecfdf5;
  color: #065f46;
  border-left: 5px solid #34d399;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Additional form styling */
.profile-container .form-group {
  margin-bottom: 18px;
}

.profile-container .form-group input[type="file"] {
  padding: 5px;
}

.profile-container .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.profile-container .form-group input[type="text"],
.profile-container .form-group input[type="email"],
.profile-container .form-group input[type="password"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.profile-container small {
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
