/* Base Styles */
body {
    margin: 0;
    font-family: 'Signika', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Wrapper */
.travel-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

/* White Frosted Card */
/*.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}
*/
.login-card {
  background: rgba(255, 255, 255, 0.05); /* 5% white → 95% transparent */
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}


/* Logo & Tagline */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}
.logo-wrapper .logo {
    width: 120px;
    margin-bottom: 0.75rem;
}
.logo-wrapper h3 {
    margin: 0;
    font-weight: 700;
    color: #333;
}
.logo-wrapper .tagline {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

/* Inputs */
.input-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
}

.form-control {
    height: 48px;
    padding-left: 2.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Button */
.btn-primary {
    background: #03004f;
    border: none;
    border-radius: 8px;
    height: 48px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #03004f;
}

/* Animations */
@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
}
