/* Page layout */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #eef2f5);
    padding: 20px;
}

/* Login card */
.tuji-login-card {
    max-width: 500px; /* unified size */
    width: 100%;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease;
}

/* Logo */
.logo-img {
    max-width: 100%;
    height: auto;
}

/* Input focus */
.form-control:focus {
    box-shadow: none;
    border-color: #f0ad4e;
}

/* Password toggle */
.password-toggle {
    cursor: pointer;
}

/* Submit button */
.btn-submit {
    background-color: #f0ad4e;
    border: none;
}

.btn-submit:hover {
    background-color: #ec9c28;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
