/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }
  
  body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
  }
  
  .container {
    display: flex;
    width: 900px;
    height: 550px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
  }
  
  /* Left Panel */
  .logo-panel {
    flex: 1;
    background: #0c0324;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 30px;
  }
  
  .logo-panel img {
    width: 100%;
    max-width: 550px;
    /*margin-bottom: 20px; */
  }
  
  .logo-panel h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .logo-panel p {
    font-size: 16px;
    opacity: 0.9;
  }
  
  /* Right Panel */
  .login-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .login-form {
    width: 100%;
    max-width: 320px;
  }
  
  .login-form h2 {
    margin-bottom: 25px;
    font-size: 24px;
    color: #111;
  }
  
  .input-group {
    margin-bottom: 20px;
  }
  
  .input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: border 0.3s ease;
  }
  
  .input-group input:focus {
    border-color: #2563eb;
  }
  
  .btn {
    width: 100%;
    padding: 12px;
    background: #0c0324;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #1e40af;
  }
  
  .extra {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    text-align: center;
  }
  
  .extra a {
    color: #2563eb;
    text-decoration: none;
  }
  
  .extra a:hover {
    text-decoration: underline;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.error {
    color: red;
    font-size: 0.9em;
    margin-bottom: 10px;
}
#inlineLoader {
  display: none; /* hidden by default */
  align-items: center;
  font-size: 0.9em;
  color: #3498db;
  margin-top: 8px;
}

.loader-icon {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}