.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    min-height: 100vh;
    
    padding: 2rem 0;
}

.login-box-vertical {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.login-top {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 15px 15px 0 0;
}

.login-top-image {
    width: 100px;
    height: 100px;
    border-radius: 40%;
    border: 3px solid white;
    margin-bottom: 1rem;
}

.login-title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-bottom {
    padding: 2rem;
}

.form-box {
    display: none;
}

.form-box.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: rgb(0, 5, 14);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-login:hover {
    background: #3a56d4;
}

.switch-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

.switch-link:hover {
    text-decoration: underline;
}


/* ---------- Global ---------- */
body {
  background: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  padding: auto;
}

/* Container shadow */
.container {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  animation: fadeIn 0.5s ease-in-out;
}

/* Page heading */
h2, h1 {
  font-weight: 600;
  color: #2c3e50;
  text-shadow: 0px 1px 1px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Form fields */
.form-control, .form-select {
  border-radius: 8px;
  transition: border 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: #4e73df;
  box-shadow: 0 0 0 0.2rem rgba(78,115,223,0.25);
}

/* ---------- Dashboard ---------- */
.card-box {
  border-radius: 15px;
  padding: 25px;
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  transition: transform 0.2s, box-shadow 0.3s;
}

.card-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ---------- Objects ---------- */
#objectSearch {
  border-radius: 20px;
  padding-left: 15px;
}

.table {
  border-radius: 12px;
  overflow: hidden;
}

.table thead {
  background: #343a40;
  color: white;
}

.table tbody tr:hover {
  background: rgba(78,115,223,0.05);
  cursor: pointer;
  transition: 0.2s;
}

/* ---------- History ---------- */
.report {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.report:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.title {
  font-weight: 600;
  color: #4e73df;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

